導航:首頁 > 操作系統 > android單選按鈕

android單選按鈕

發布時間:2022-03-31 15:48:16

Ⅰ 安卓開發 單選對話框實現跳轉

AlertDialog Builder=new AlertDialog.Builder(Aone.this).setTitle("單選框")
.setSingleChoiceItems(
new String[] { "青少年", "成年人","中年人","老年人" }, 0,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// dialog.dismiss();
//這里就是你要寫的地方onclick()裡面的which就是你點擊單選框的索引
//如果你想點擊青少年的時候跳轉,就判斷一下
if(which==0){
Intent objIntent = new Intent();

。。。。就不寫了

}
}
}).setNegativeButton("確定", null).show();

android 編程中怎樣從單選按鈕獲取數據

java">this.sex=(RadioGroup)super.findViewById(R.id.sex);
this.male=(RadioButton)super.findViewById(R.id.male);
this.female=(RadioButton)super.findViewById(R.id.female);
this.sex.setOnCheckedChangeListener(newOnCheckedChangeListenerImp());

r{

publicvoidonCheckedChanged(RadioGroupgroup,intcheckedId){
Stringtemp=null;
if(MainActivity.this.male.getId()==checkedId){
temp="男";
}
elseif(MainActivity.this.female.getId()==checkedId){
temp="女";
}

RadioButton是android開發中常見的一種控制項,而使用簡單,通常與RadioGroup一起使用。RadioButton表示單個圓形單選框,而RadioGroup是可以容納多個RadioButton的容器。

Ⅲ android開發 如何在Activity中更改單選按鈕默認值比如一開始默認是男,選擇女後想再次選擇使默認是女

在單選按鈕控制項的setOnCheckChangeListenner方法中,獲取到選擇的是男是女以後,將值存入SharePreference,下次從中再取出來

Ⅳ Android Studio 單選按鈕

是的,沒錯,能單獨拿出來拿出來用,要用RadioGroup包起來,代表一個組嘛,道理很簡單。CheckBox可以單獨出來。

用法是這樣的

<RadioGroup....>
<RadioButton.../>
<RadioButton.../>
<RadioButton.../>
<RadioButton.../>
......
</RadioGroup>

Ⅳ Android studio 單選按鈕怎麼更改點擊後的樣式

button設置null之後再設置background,自己創建個selector就行了

Ⅵ 問一下 android radiobutton控制項 控制單選按鈕和文字之間的距離的問題

我覺得RadioButton原始的button如果設置為 android:button="@null「 而用android:drowableLeft=」@drawable/radiobtn_selector「;這樣顯示圖片的話效果會更加好,而且可以用android:drawablePading=」10dp「這個屬性控制圖片和字兒的距離。

希望可以幫到你。Thanks

Ⅶ android 用imageview實現單選功能

imageView2.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
v.setBackgroundResource(null); v.setBackgroundResource(R.drawable.adddoorbellon);
ImageView imageView = (ImageView) findViewById(R.id.yimenling_oneclick);
imageView.setBackgroundResource(R.drawable.akeyconfiguration);
}
});

這樣試試,,最好把你的錯誤日誌發出來

Ⅷ android radiobutton怎麼單選

activity_main.xml

<RadioGroup

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="horizontal"

android:layout_gravity="center_horizontal">

<RadioButton

android:id="@+id/xiaoxi"

android:layout_weight="1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="消息"

android:button="@null"

android:textSize="20sp"

android:gravity="center"

android:checked="true"

android:drawableTop="@drawable/selector_bar_1"/>

<RadioButton

android:id="@+id/lianxiren"

android:layout_weight="1"

android:button="@null"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="聯系人"

android:gravity="center"

android:drawableTop="@drawable/selector_bar_2"

android:textSize="20sp"/>

<RadioButton

android:id="@+id/dongtai"

android:layout_weight="1"

android:button="@null"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textSize="20sp"

android:gravity="center"

android:drawableTop="@drawable/selector_bar_3"

android:text="動態"/>

</RadioGroup>

---------------------------在drawable下新建文件----------------------

1.selector_bar_1.xml

<?xml version="1.0"encoding="utf-8"?>

<selectorxmlns:android="http://schemas.android.com/apk/res/android">

<itemandroid:drawable="@mipmap/bar_1_select"android:state_checked="true"/>

<itemandroid:drawable="@mipmap/bar_1_unselect"android:state_checked="false"/>

</selector>

2.selector_bar_1.xml

<?xml version="1.0"encoding="utf-8"?>

<selectorxmlns:android="http://schemas.android.com/apk/res/android">

<itemandroid:drawable="@mipmap/bar_2_selector"android:state_checked="true"/>

<itemandroid:drawable="@mipmap/bar_2_unselector"android:state_checked="false"/>

</selector>

3.selector_bar_1.xml

<?xml version="1.0"encoding="utf-8"?>

</selector>

Ⅸ 如何實現android中三個單選按鈕橫向排列且只能選一個

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/row_item_margin">

<TextView
android:id="@+id/tvStorageWay"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:text="儲存方式:"/>

<RadioGroup
android:id="@+id/rgStorageWay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/tvStorageWay"
android:gravity="center_vertical"
android:orientation="horizontal">

<RadioButton
android:id="@+id/rbPack"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="包裝"/>

<RadioButton
android:id="@+id/rbBulk"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="散裝"/>

<RadioButton
android:id="@+id/rbStorageWayOther"
style="@style/EditTextStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/row_item_margin"
android:layout_weight="1"
android:button="@null"
android:drawableLeft="@drawable/selector_login_mode_radiobutton"
android:text="其它"/>
</RadioGroup>
</RelativeLayout>

Ⅹ 如何將文本放在 android 中單選按鈕的左邊

<RadioGroup
android:id="@+id/radios"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_gravity="right"
android:inputType="text"
android:orientation="vertical">

<RadioButton
android:id="@+id/first"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:background="@color/white"
android:button="@null"
android:drawablePadding="30dp"
android:drawableRight="@android:drawable/btn_radio"
android:text="first"
android:textColor="@color/Black"
android:textSize="20dip"/>

<RadioButton
android:id="@+id/second"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/Black"
android:button="@null"
android:drawablePadding="30dp"
android:drawableRight="@android:drawable/btn_radio"
android:text="second"
android:textColor="@color/White"
android:textSize="20dp"/>

<RadioButton
android:id="@+id/third"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/Maroon"
android:button="@null"
android:drawablePadding="30dp"
android:drawableRight="@android:drawable/btn_radio"
android:text="third"
android:textColor="@color/Vanilla"
android:textSize="20dp"/>
</RadioGroup>

閱讀全文

與android單選按鈕相關的資料

熱點內容
python求灰度均值 瀏覽:752
c編譯器是系統軟體嗎 瀏覽:694
獲取伺服器內網地址 瀏覽:534
新手媽媽如何帶新生兒APP 瀏覽:155
java日程管理 瀏覽:374
高清視頻鏈接加密 瀏覽:407
新買的阿里雲伺服器怎麼配置 瀏覽:612
在線編譯器為什麼刷新還在 瀏覽:209
雲伺服器系統盤可以裝資料庫 瀏覽:906
php繪制圖形 瀏覽:585
支付伺服器異常怎麼辦 瀏覽:76
java撥號 瀏覽:866
er5200如何設置虛擬伺服器 瀏覽:569
網路中心伺服器叫什麼 瀏覽:456
isplay單片機下載器 瀏覽:480
怎麼查看伺服器地址和埠 瀏覽:184
加密朋克ai 瀏覽:155
新雲伺服器怎樣添加d盤 瀏覽:669
php查看對象 瀏覽:75
程序員女孩跳舞視頻 瀏覽:556