欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實(shí)現(xiàn)單項(xiàng)、多項(xiàng)選擇操作

 更新時(shí)間:2016年04月29日 15:29:49   投稿:lijiao  
這篇文章主要介紹了Android實(shí)現(xiàn)單項(xiàng)、多項(xiàng)選擇操作的相關(guān)資料,單項(xiàng)選擇、多項(xiàng)選擇操作在項(xiàng)目開(kāi)發(fā)中經(jīng)常應(yīng)用,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android實(shí)現(xiàn)單項(xiàng)、多項(xiàng)選擇操作的相關(guān)代碼,供大家參考,具體內(nèi)容如下

1、單項(xiàng)選擇
1.1.布局

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:tools="http://schemas.android.com/tools" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" 
 android:orientation="vertical" 
 tools:context="com.rj141.sb.kongjian.DateActivity"> 
 
 
 <TextView 
  android:layout_marginLeft="10dp" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="2+3=" 
  android:textSize="22dp" 
  /> 
 
 <RadioGroup 
  android:layout_marginLeft="20dp" 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content"> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="A.2" 
   android:id="@+id/rb1" 
   /> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="B.3" 
   android:id="@+id/rb2" 
   /> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="C.4" 
   android:id="@+id/rb3" 
   /> 
  <RadioButton 
   android:layout_width="wrap_content" 
   android:layout_height="wrap_content" 
   android:text="D.5" 
   android:id="@+id/rb4" 
   /> 
 </RadioGroup> 
 
 <Button 
  android:id="@+id/submit" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:text="提交"/> 
</LinearLayout>

 1.2.Java文件

public class SingChoose extends AppCompatActivity { 
 private Button btn; 
 private RadioButton rbD; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.sing_choose); 
 
  rbD= (RadioButton) this.findViewById(R.id.rb4); 
  btn= (Button) this.findViewById(R.id.submit); 
  btn.setOnClickListener(new View.OnClickListener() { 
   @Override 
   public void onClick(View v) { 
    if(rbD.isChecked()){ 
     Toast.makeText(SingChoose.this,"正確,請(qǐng)加五分",Toast.LENGTH_SHORT).show(); 
    } 
    else { 
     Toast.makeText(SingChoose.this,"錯(cuò)誤,請(qǐng)減五分",Toast.LENGTH_SHORT).show(); 
    } 
   } 
  }); 
 } 
} 

效果圖:

2多項(xiàng)選擇
2.1.布局

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 xmlns:tools="http://schemas.android.com/tools" 
 android:layout_width="match_parent" 
 android:layout_height="match_parent" 
 android:orientation="vertical" 
 tools:context="com.rj141.sb.kongjian.CheckChoose"> 
 
 <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:textSize="20dp" 
  android:text="你喜歡下列哪些物品?" 
  /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="巧克力" 
  android:id="@+id/cb1" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="冰淇淋" 
  android:id="@+id/cb2" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="蛋糕" 
  android:id="@+id/cb3" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="啤酒" 
  android:id="@+id/cb4" /> 
 
 <CheckBox 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:text="肉" 
  android:id="@+id/cb5" /> 
 
 <TextView 
  android:layout_width="wrap_content" 
  android:layout_height="wrap_content" 
  android:textSize="18dp" 
  android:id="@+id/tv" /> 
 
</LinearLayout> 

2.2.Java文件

public class CheckChoose extends AppCompatActivity implements CompoundButton.OnCheckedChangeListener { 
 
 private CheckBox cb1,cb2,cb3,cb4,cb5; 
 private TextView tv; 
 @Override 
 protected void onCreate(Bundle savedInstanceState) { 
  super.onCreate(savedInstanceState); 
  setContentView(R.layout.check_choose); 
 
  tv= (TextView) this.findViewById(R.id.tv); 
  cb1= (CheckBox) this.findViewById(R.id.cb1); 
  cb2= (CheckBox) this.findViewById(R.id.cb2); 
  cb3= (CheckBox) this.findViewById(R.id.cb3); 
  cb4= (CheckBox) this.findViewById(R.id.cb4); 
  cb5= (CheckBox) this.findViewById(R.id.cb5); 
  cb1.setOnCheckedChangeListener(this); 
  cb2.setOnCheckedChangeListener(this); 
  cb3.setOnCheckedChangeListener(this); 
  cb4.setOnCheckedChangeListener(this); 
  cb5.setOnCheckedChangeListener(this); 
 } 
 
 @Override 
 public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { 
  String str="您喜歡:"; 
  if(cb1.isChecked()){ 
   str+=cb1.getText()+","; 
  } 
  if(cb2.isChecked()){ 
   str+=cb2.getText()+","; 
  } 
  if(cb3.isChecked()){ 
   str+=cb3.getText()+","; 
  } 
  if(cb4.isChecked()){ 
   str+=cb4.getText()+","; 
  } 
  if(cb5.isChecked()){ 
   str+=cb5.getText()+","; 
  } 
  tv.setText(str); 
 } 
} 

效果圖:

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)Android軟件編程有所幫助。

相關(guān)文章

  • Android中View跟隨手指滑動(dòng)效果的實(shí)例代碼

    Android中View跟隨手指滑動(dòng)效果的實(shí)例代碼

    這篇文章主要介紹了Android中View跟隨手指滑動(dòng)效果的實(shí)例代碼,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-05-05
  • android界面布局之實(shí)現(xiàn)文本塊布局效果示例

    android界面布局之實(shí)現(xiàn)文本塊布局效果示例

    這篇文章主要介紹了android實(shí)現(xiàn)文本塊布局效果示例,需要的朋友可以參考下
    2014-04-04
  • Android應(yīng)用的多語(yǔ)言支持的實(shí)現(xiàn)方法

    Android應(yīng)用的多語(yǔ)言支持的實(shí)現(xiàn)方法

    本篇文章主要介紹了Android應(yīng)用的多語(yǔ)言支持的實(shí)現(xiàn)方法,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • Android滾動(dòng)條廣告實(shí)現(xiàn)代碼示例

    Android滾動(dòng)條廣告實(shí)現(xiàn)代碼示例

    本篇文章主要介紹了Android滾動(dòng)條廣告實(shí)現(xiàn)代碼示例,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2017-09-09
  • android WebView組件使用總結(jié)

    android WebView組件使用總結(jié)

    瀏覽器控件是每個(gè)開(kāi)發(fā)環(huán)境都具備的,這為馬甲神功提供了用武之地,windows的有webbrowser,android和ios都有webview;本篇主要介紹android的webview之強(qiáng)大,感興趣的朋友可以研究下
    2012-12-12
  • Android獲取應(yīng)用程序大小的方法

    Android獲取應(yīng)用程序大小的方法

    這篇文章主要介紹了Android獲取應(yīng)用程序大小的方法,有需要的朋友可以參考一下
    2014-01-01
  • Android APK反編譯技巧深入講解

    Android APK反編譯技巧深入講解

    這篇文章主要給大家介紹了關(guān)于Android APK反編譯技巧的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)各位Android開(kāi)發(fā)者們具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-05-05
  • Android播放視頻的三種方式

    Android播放視頻的三種方式

    這篇文章主要為大家詳細(xì)介紹了Android播放視頻的三種方式,使用其自帶的播放器、VideoView、MediaPlayer類和SurfaceView來(lái)實(shí)現(xiàn),感興趣的小伙伴們可以參考一下
    2016-07-07
  • Android中Notification的用法匯總

    Android中Notification的用法匯總

    這篇文章主要介紹了Android中Notification的用法匯總的相關(guān)資料,需要的朋友可以參考下
    2016-01-01
  • Android之ProgressBar即時(shí)顯示下載進(jìn)度詳解

    Android之ProgressBar即時(shí)顯示下載進(jìn)度詳解

    這篇文章主要為大家詳細(xì)介紹了Android之ProgressBar即時(shí)顯示下載進(jìn)度,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2016-09-09

最新評(píng)論