gpt4 book ai didi

android - android中的单选选择对话框

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:12:06 25 4
gpt4 key购买 nike

我正在制作一个安卓程序。在我的应用程序中,我使用的是单项选择 AlertDialog,其项目以编程方式添加。我想做的是:

  • 在用户下次打开对话框时为所选项目设置背景色,
  • 在对话框中间显示所选项目(这是一个问题,因为大约有 20 个项目)。

这是我的:XML:

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp" >



<Button
android:id="@+id/selectDateButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Please, select date" />

</LinearLayout>

Java:

public class ExperimentListView extends Activity {

private static final DateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd");
private static Calendar calendar = Calendar.getInstance();
private static Button selectDateButton;
private static String[] items;
private static int selectedDatePosition = 0;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.list_view_ex);

selectDateButton = (Button)findViewById(R.id.selectDateButton);
selectDateButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
items = new String[20];
for (int i = 0; i < 20; i++) {
items[i] = DATE_FORMAT.format(calendar.getTime());
calendar.add(Calendar.DATE, 1);
}
showListView();
}
});

}

private void showListView() {
AlertDialog.Builder builder = new AlertDialog.Builder(ExperimentListView.this);
builder.setTitle("Select date");
builder.setItems(items, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
selectedDatePosition = which;
selectDateButton.setText(items[selectedDatePosition]);
}
});
AlertDialog alertDialog = builder.create();
alertDialog.getListView().setSelection(selectedDatePosition);
alertDialog.show();
}
}

到目前为止,我还没有找到解决这个问题的方法,如果有人能提供帮助,我将不胜感激。提前致谢。

最佳答案

而不是使用 builder.setItem 使用 builder.setSingleChoiceItems 并将选定的项目位置作为 argumet 传递,例如

    builder.setSingleChoiceItems(strArray, selected_pos, new DialogInterface.OnClickListener ()
{
@Override
public void onClick(DialogInterface dialog, int which)
{

}
});

关于android - android中的单选选择对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13696699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com