将CheckBox添加到单一选择集AlertDialog

时间:2013-03-16 11:41:37

标签: android android-layout customization alertdialog radiobuttonlist

我想在这个标准的AlertDialog中添加一个带有单个选项列表的复选框

new AlertDialog.Builder(this)
.setSingleChoiceItems(R.array.difficultyLevel_list, 1, new DialogInterface.OnClickListener() {
    @Override public void onClick(DialogInterface dialog, int which) { level = which; }
})
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
    }
})
.setNegativeButton(android.R.string.cancel, null)
.show();

就在现在,它显示得很好:

enter image description here

我转而使用自定义布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <CheckBox
        android:id="@+id/levels_keep"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:checked="false"
        android:text="@string/levels_keep" />

    <ListView
        android:id="@+id/levels_list"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:entries="@array/difficultyLevel_list"
        android:choiceMode="singleChoice" />

</LinearLayout>

使用此代码:

LayoutInflater inflater = getLayoutInflater();
final View customView = inflater.inflate(R.layout.dialog_levels, null);
final ListView list = (ListView) customView.findViewById(R.id.levels_list);
final CheckBox keep = (CheckBox) customView.findViewById(R.id.levels_keep);
// list.setSelected(level);
list.setItemChecked(level, true); // Marks the item as checked
list.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        level = position;
    }
});

new AlertDialog.Builder(this)
.setView(customView)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        CheckBox keep = (CheckBox) findViewById(R.id.levels_keep);
        if( keep.isChecked() ) {
            Context context = PlayersActivity.this;
            SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
            Editor editor = sp.edit();
            editor.putString(context.getString(R.string.pref_level_key), String.valueOf(level));
            editor.commit();
        }
    }
})
.setNegativeButton(android.R.string.cancel, null)
.show();

显示(列表可滚动):

enter image description here

有几件我无法弄清楚的事情:

  1. 为什么我在列表中看不到单选按钮?
  2. 如何设置默认选中项?(使用解决方案编辑代码)
  3. 如何收听选择中的更改?(编辑代码,因为我发现了如何做)
  4. 如何在复选框方块和复选框文本之间添加填充。我试过android:paddingLeft,但是更糟糕的是,重叠文本和方块。我试过android:drawablePadding没效果。
  5. 为什么主题发生了变化? (不是很重要,只是好奇)编辑似乎主题颜色都搞砸了,当我点击一个项目时,它的文字颜色变成黑色并且“消失”到行的背景中

1 个答案:

答案 0 :(得分:2)

  

为什么我看不到列表中的单选按钮?

似乎设置android:entries属性会使ListView使用ArrayAdapter作为布局创建com.android.internal.R.layout.simple_list_item_1。我不知道该布局是否完全复制了android.R.layout.simple_list_item_1布局,但如果确实如此,那么它只是TextView,因此没有CheckBox可用。

  

如何设置默认选中项?

如果我上面说的是真的,那么删除entries属性并使用ListView作为行布局在代码中为* levels_list * android.R.layout.simple_list_item_single_choice设置适配器。

  

如何收听选择中的更改?

在布局的OnItemClickListener上设置ListView

  

如何在复选框方块和复选框之间添加填充   文本。我试过android:paddingLeft,但是让它变得更糟,重叠   文字和正方形。我试过android:drawablePadding没效果。

使用简单的CheckBoxTextView代替CheckBox,您可以随意放置。

  

为什么主题发生了变化? (不重要,只是好奇)

我不确定。首先,正如我上面所说,ListView使用了一种特殊的布局(我不知道它的风格如何),而且你还在使用自定义视图而不是普通的ListView内容可以用不同的方式设计。

如果您只想在标题中使用ChekcBox,为什么不只是AlertDialog上的set a custom title并继续使用setSingleChoiceItems

OP使用解决方案编辑

我在这里发布了工作代码,因为它肯定是基于Luksprog的答案,我想把它标记为答案。此代码已经过测试并且工作正常。

LayoutInflater inflater = getLayoutInflater();
final View customView = inflater.inflate(R.layout.dialog_levels, null);
final ListView list = (ListView) customView.findViewById(R.id.levels_list);
final CheckBox keep = (CheckBox) customView.findViewById(R.id.levels_keep);
String [] items = getResources().getStringArray(R.array.difficultyLevel_list);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_single_choice, items);
list.setAdapter(adapter);
list.setItemChecked(level, true);
list.setOnItemClickListener(new OnItemClickListener() {
    @Override
    public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
        level = position;
    }
});

new AlertDialog.Builder(this)
.setView(customView)
.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        MyLog.w(TAG,"Level is " + level);
        if( keep.isChecked() ) {
            Context context = PlayersActivity.this;
            SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(context);
            Editor editor = sp.edit();
            editor.putString(context.getString(R.string.pref_level_key), String.valueOf(level));
            editor.commit();
        }
    }
})
.setNegativeButton(android.R.string.cancel, null)
.show();