6

私はアンドロイドプログラムを作っています。私のアプリでは、アイテムがプログラムで追加される単一選択の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();
 }
}

私はこれまでこれに対する解決策を見つけることができませんでした、そして誰かが助けてくれるなら私はありがたいです。前もって感謝します。

4

2 に答える 2

2

Instead of using builder.setItem use builder.setSingleChoiceItems with selected item position passed as an argumet like

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

         }
    });
于 2012-12-04T05:52:21.893 に答える
1

1) 背景色を設定するには、アラート ダイアログのカスタム ビューを使用できます。

2) 選択した項目をダイアログの中央に表示するには、アラート ダイアログのリストに渡す配列内の位置を交換する必要があります。

3)また、以前に選択したアイテムの背景色を尊重したい場合は、共有設定を使用してアイテムと背景を保存し、ユーザーが警告ダイアログを開いたときに選択された背景とアイテムを取り戻します。

Deepikaが言ったように、単一選択の選択にはsetSingleChoiceItemsを使用してください。

于 2012-12-04T05:53:21.597 に答える