素材巴巴 > 程序开发 >

性别选择

程序开发 2023-09-12 10:15:54

版权声明:本文为博主原创文章,未经博主允许不得转载。

效果图:


使用的是AlertDialog

xml:

[html] view plain copy
  1.                         android:id="@+id/sex_text"  
  2.                         android:layout_width="100dp"  
  3.                         android:layout_height="wrap_content"  
  4.                         android:layout_gravity="center_vertical"  
  5.                         android:layout_marginLeft="15dp"  
  6.                         android:layout_marginRight="10dp"  
  7.                         android:background="@android:color/transparent"  
  8.                         android:focusable="false"  
  9.                         android:gravity="right"  
  10.                         android:hint="输入性别"  
  11.                         android:maxWidth="100dp"  
  12.                         android:singleLine="true"  
  13.                         android:textColor="#666666"  
  14.                         android:textSize="14sp" />  

java: [java] view plain copy
  1. private String[] sexArry = new String[] { "女孩", "男孩" };// 性别选择  
  2.   
  3. sexView = (EditText) findViewById(R.id.sex_text);  
  4.   
  5. sexView.setOnClickListener(new View.OnClickListener() {  
  6.             @Override  
  7.             public void onClick(View v) {  
  8.                 showSexChooseDialog();  
  9.             }  
  10.         });  
  11.   
  12. /* 性别选择框 */  
  13.     private void showSexChooseDialog() {  
  14.   
  15.         AlertDialog.Builder builder = new AlertDialog.Builder(this);// 自定义对话框  
  16.         builder.setSingleChoiceItems(sexArry, 0, new DialogInterface.OnClickListener() {// 2默认的选中  
  17.   
  18.             @Override  
  19.             public void onClick(DialogInterface dialog, int which) {// which是被选中的位置  
  20.                 // showToast(which+"");  
  21.                 sexView.setText(sexArry[which]);  
  22.                 dialog.dismiss();// 随便点击一个item消失对话框,不用点击确认取消  
  23.             }  
  24.         });  
  25.         builder.show();// 让弹出框显示  
  26.     } 

标签:

素材巴巴 Copyright © 2013-2021 http://www.sucaibaba.com/. Some Rights Reserved. 备案号:备案中。