私はアンドロイドプログラムを作っています。私のアプリでは、アイテムがプログラムで追加される単一選択の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();
}
}
私はこれまでこれに対する解決策を見つけることができませんでした、そして誰かが助けてくれるなら私はありがたいです。前もって感謝します。