- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个 AlertDialog
,它有一个 ListView
项目和复选框。我希望能够在调用 Activity 中收集选中的项目,以便我可以使用它们。
我的 Activity 中有一个按钮:
<Button android:id="@+id/my_button" />
我是这样的:
Button button = (Button)findViewById(R.id.my_button);
然后我设置了一个监听器:
button.setOnClickListener(my_on_click_listener);
View.OnClickListener my_on_click_listener = new View.OnClickListener(){
@Override
public void onClick(View v){
my_method();
}
};
调用一个方法:
public void my_method(){
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(this);
LayoutInflater layoutInflater = this.getLayoutInflater();
View view = layoutInflater.inflate(R.layout.my_listview_layout, null);
dialogBuilder.setView(view);
final DatabaseHelper databaseHelper = new DatabaseHelper(this);
String[] fromColumns = {"_id","value"};
int[] toViews = {R.id.dropdown_id, R.id.dropdown_value};
final ListView listView = (ListView)view.findViewById(R.id.my_listview);
final Cursor cursor = databaseHelper.getData();
SimpleCursorAdapter simpleCursorAdapter = new SimpleCursorAdapter(this, R.layout.my_layout, cursor, fromColumns, toViews, 0);
listView.setAdapter(simpleCursorAdapter);
// I tried this, but I'm not sure what to use for the isCheckedColumn and labelColumn
dialogBuilder.setMultiChoiceItems(cursor, "", "", new DialogBuilder.OnMultiChoiceClickListener(){
@Override
public void onClick(DialogInterface dialog, int which, boolean isChecked){
// do stuff here ...
}
});
dialogBuilder.setPositiveButton("Save Selected", new DialogInterface.OnClickListener(){
public void onClick(DialogInterface dialog, int which){
// I tried this, but it only collects the elements within view
for(int i=0; i<listView.getCount(); i++){
LinearLayout ll = (LinearLayout)listView.getChildAt($i);
if(null != ll){
CheckBox cb = (CheckBox)ll.findViewById(R.id.dropdown_checkbox);
TextView tv01 = (CheckBox)ll.findViewById(R.id.dropdown_id);
TextView tv02 = (CheckBox)ll.findViewById(R.id.dropdown_value);
}
}
}
});
final AlertDialog alert = dialogBuilder.create();
alert.setTitle("Select Choices");
alert.show();
}
这是my_listview_layout.xml:
<ListView android:id="@+id/my_listview" />
这是my_layout.xml:
<LinearLayout>
<CheckBox android:id="@+id/dropdown_checkbox" />
<TextView android:id="@+id/dropdown_value" />
<TextView android:id="@+id/dropdown_id" android:visibility="invidible"/>
</LinearLayout>
请参阅我在上面代码中的两条注释。
那么,在 Android 的 AlertDialog 中,如何从由光标填充的 ListView 中获取选中的值?
更新:
在我的代码中,我注释掉了这一行:
listView.setAdapter(simpleCursorAdapter);
并更改了这一行:
dialogBuilder.setMultiChoiceItems(cursor, "", "", new DialogBuilder.OnMultiChoiceClickListener();
为此:
dialogBuilder.setMultiChoiceItems(cursor, "_id", "value", new DialogBuilder.OnMultiChoiceClickListener()
现在我的对话框呈现正确,我可以确定哪些项目被选中。我想 [也许] ListView
和 setMultiChoiceItems()
都在争夺对绘制选项列表的控制权。
但是,我有一个新问题。如果我选中列表顶部的某些项目,然后向下滚动并返回,我选中的项目已被取消选中。那,默认情况下列表中的第一项是选中的,我不知道如何取消选中它。
有什么想法吗???
再次感谢...
最佳答案
你可以这样做:
// Fetch the list of items from any of your sources and store it as an array list.
// Here I'm considering itemList as the source it is a string array but you
can use an array list rather.
final ArrayList<String> selectedItemList = new ArrayList<>();
final int itemListLength = itemList.length;
final boolean[] selectionPreference = new boolean[itemListLength];
for(int i=0; i < itemListLength; i++){
Arrays.fill(selectionPreference, Boolean.FALSE);
}
AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle("Select one")
.setMultiChoiceItems(itemList, selectionPreference,
new DialogInterface.OnMultiChoiceClickListener() {
@Override
public void onClick(DialogInterface dialog, int which, boolean isChecked) {
String item = itemList[which];
if(isChecked){
selectionPreference[which] = true;
} else {
selectionPreference[which] = false;
}
}
})
.setPositiveButton("ok",new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
for (int i=0; i<itemListLength; i++) {
if(selectionPreference[i]) {
selectedItemList.add(itemList[i]);
}
}
Log.i(TAG, String.valueOf(selectedItemList));
}
}).show();
您使用的过程可能有点乏味。因此,使用这种方式将很容易访问和保留值。希望对您有所帮助。
关于android - 如何从 AlertDialog 中的游标填充的 ListView 中获取选中的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48120021/
我正在尝试在 AlertDialog 中创建一个 AlertDialog,但是当我运行代码时,没有出现第二个 AlertDialog 这是我的代码,我想让它像如果用户在第一个 AlertDialog
相关问题是here 制作android应用,我觉得我的代码不酷。 因为,每当需要对话框时我都会创建新的 AlderDialog.Builder 以防止出现此错误 “指定的子项已有父项。您必须先对子项的
我正在使用以下代码来创建警报对话框。 AlertDialog.Builder builder = new AlertDialog.Builder(new ContextThemeWrapper(thi
我正在尝试在警报对话框中添加一个警报对话框。但是看不到第二个警报对话框。请帮助我这是我显示的代码 AlertDialog alertDialog = new AlertDialog.Builder(m
为什么要使用 AlertDialog.Builder 类而不是 AlertDialog 直接可用的方法,例如,为什么使用 AlertDialog.Builder.setCancellable 而不是
假设您有一个带有两个按钮 A 和 B 的 AlertDialog。我发现在某些设备和某些版本的 android 上,如果您触摸对话框周围屏幕的任何区域,AlertDialog 消失。在其他设备上,您被
我目前正在使用需要使用大量 AlertDialogs 的应用程序。我目前在这里编写了一个基本的代码: protected void StopButton () { AlertDialog.Bu
我正在开发一个 Android 应用程序,并且我有一个 AlertDialog 子类。我想在对话框标题区域的右侧放置 2 个 ImageButtons(类似于 Activity 中的 ActionBa
我一直在尝试在 AlertDialog 中制作一个按钮Flutter 中的盒子。但我找不到拉伸(stretch)按钮容器的方法。请检查我的代码并查看下面的示例图片。 AlertDialog(
我正在尝试找出创建对话框的最佳方式。我可以创建自己的 Dialog 类(对我来说,它更干净、更有条理),或者我可以使用 AlertDialog.Builder(可以内联完成,而且看起来很时髦)……两者
我使用 AlertDialog.builder 创建了一个对话框,其中显示了可以检查的多选项目列表。 我设置了初始的项目名称集及其检查状态: builder.setMultiChoiceItems(
应用拦截短信并显示消息的对话框。 但是我无法在我的 Test 类中解决我的 Dialog 错误。我做错了什么? (我还包含了我的其他 2 个文件)。 Eclipse 中显示错误:AlertDialog
我的 flutter 应用程序中出现了一个 Flutter AlertDiaog。使用 Flutter Driver,我无法点击 Flutter AlertDialog 或 AlertDialog 上
我是 Jetpack compose 的初学者。现在在我的应用程序屏幕中,AlertDialog 用于向用户显示一些信息。 根据文档,当用户在对话框外或后退按钮上单击时,将调用 onDismissRe
我有一个 AlertDialog 的自定义子类,它应该显示范围内所有可用 Wifi 网络的列表。 我通过创建该对话框的实例并调用 show() 来显示此对话框,并且我没有使用 AlertDialog.
我有一个 AlertDialog 的子类,它应该显示范围内所有可用 Wifi 网络的列表。 我希望对话框本身负责启动 Wifi 扫描并接收结果。 出于这个原因,我不能使用 AlertDialog.Bu
标题几乎说明了一切。我需要关于如何做到这一点的建议。我可能只是将外部适配器添加为 AlertDialog 上的 View,以使其不那么复杂,但我仍然不知道如何与 交互来自内部适配器的 AlertDia
我想自定义 V7 AlertDialog 的 TITLE 颜色。 SetCustomTitle() 似乎无法与 android.support.v7.app.AlertDialog 一起使用。我可以看
创建 AlertDialog 然后显示和显示 AlertDialog.Builder 本身之间的主要区别是什么? 例如。我可以有一个像这样的 AlertDialog.Builder: AlertDi
关于我们什么时候应该使用 android.app.AlertDialog,或者我们什么时候应该使用 android.support.v7.app.AlertDialog,是否有任何指南? 因为,如果我
我是一名优秀的程序员,十分优秀!