在我的 android 应用程序中,我制作了一个自定义警报对话框。它在单击按钮时打开。在该对话框中,有 4 个切换按钮应该像单选按钮一样做出反应。出于设计原因,我不想使用单选按钮。
我无法为这些切换按钮实现 onClick 侦听器。我以某种方式获得它们,只有一个按钮可以“打开”,其余的应该关闭。(就像一个 RadioButton 组)
我目前无法以我的声誉上传图片,所以这里是 xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Dlg_DrvPut"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical|center_horizontal"
android:text="@string/DrvPutDlgTitle"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_x="1dp"
android:layout_y="3dp"
android:gravity="center_vertical|center_horizontal"
android:text="@string/DrvPutDlgDrvCap" />
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:shrinkColumns="*"
android:stretchColumns="*" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="fill_parent"
android:layout_height="wrap_content">"
<ToggleButton
android:id="@+id/rb_hit"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textOn="Hit"
android:textOff="Hit"
android:layout_column="0" >
</ToggleButton>
<ToggleButton
android:id="@+id/rb_left"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textOn="Left"
android:textOff="Left"
android:layout_column="1" />
<ToggleButton
android:id="@+id/rb_right"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textOn="Right"
android:textOff="Right"
android:layout_column="2" />
<ToggleButton
android:id="@+id/rb_miss"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textOn="Miss"
android:textOff="Miss"
android:layout_column="3" />
</TableRow>
</TableLayout>
<EditText
android:id="@+id/drvDst"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="number" >
</EditText>
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_x="1dp"
android:layout_y="3dp"
android:gravity="center_vertical|center_horizontal"
android:text="@string/DrvPutDlgPutCap" />
<EditText
android:id="@+id/putDst"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="numberDecimal" />
</LinearLayout>
如何才能做到这一点?
我尝试了提到的 onCheckedChangeListener 但这似乎在 AlertDialogBuilder 中不可用。这是按下按钮以显示警报对话框后将运行的代码。这是现在工作的代码,每个切换按钮都有一个 onCheckedChangeListener。如果用户选中了其中一个按钮,则所有其他切换按钮的选中状态设置为 false。
public void pDrvPutClick(View v) {
final Button b = (Button) v;
LayoutInflater inflater = getLayoutInflater();
View dstView = inflater.inflate(R.layout.dlg_drvput, null);
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setView(dstView);
final EditText edit_ddst = (EditText) dstView.findViewById(R.id.drvDst);
final EditText edit_pdst = (EditText) dstView.findViewById(R.id.putDst);
final ToggleButton rb1 = (ToggleButton) dstView.findViewById(R.id.rb_hit);
final ToggleButton rb2 = (ToggleButton) dstView.findViewById(R.id.rb_left);
final ToggleButton rb3 = (ToggleButton) dstView.findViewById(R.id.rb_right);
final ToggleButton rb4 = (ToggleButton) dstView.findViewById(R.id.rb_miss);
rb1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if ( isChecked )
{
rb2.setChecked(false);
rb3.setChecked(false);
rb4.setChecked(false);
}
}
});
rb2.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if ( isChecked )
{
rb1.setChecked(false);
rb3.setChecked(false);
rb4.setChecked(false);
}
}
});
rb3.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if ( isChecked )
{
rb1.setChecked(false);
rb2.setChecked(false);
rb4.setChecked(false);
}
}
});
rb4.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener(){
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked)
{
if ( isChecked )
{
rb1.setChecked(false);
rb3.setChecked(false);
rb2.setChecked(false);
}
}
});
builder.setPositiveButton("OK", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int whichButton){
String ddst;
ddst = edit_ddst.getText().toString();
if (ddst=="") {
ddst="Drive";
}else {
if (rb1.isChecked()){
ddst="H"+ddst;
}
if (rb2.isChecked()){
ddst="L"+ddst;
}
if (rb3.isChecked()){
ddst="R"+ddst;
}
if (rb4.isChecked()){
ddst="M"+ddst;
}
}
String pdst;
pdst = edit_pdst.getText().toString();
if (pdst=="") {
pdst="PutDst";
}
b.setText(ddst+"\n"+pdst);
}
});