3

リスト ビューを作成し、そのリスト ビューをカスタム ダイアログに実装します。そのリストビューは配列アダプターを使用し、私の配列アダプターでは、希望の色で独自のレイアウトを使用しています。コードを以下に示します。

 listView = new ListView(context);
 ArrayAdapter<String> adapter = new ArrayAdapter<String>(Loged.this,
                        R.layout.my_spinner_layout, items);
listView.setAdapter(adapter);

ここで、リスト アイテムのクリック リスナーが正常に動作しています。

問題は今始まっています。各行にラジオ ボタンが含まれているカスタム アラート ダイアログ内のリスト ビューが必要です。私は同じ方法を使用します。これが私のコードです。

listView = new ListView(context);
                 ArrayAdapter<String>adapter = new ArrayAdapter<String>(context,R.layout.my_single_choice_layout, choice);
                 listView.setAdapter(adapter);

ここでは、すべての radioButton を同時にチェックできます。私のリスナーはうまく機能していません。

my_spinner_layout_xml

<?xml version="1.0" encoding="utf-8"?>
<TextView  
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:paddingTop="10dp"
        android:paddingBottom="10dp"
        android:paddingLeft="10dp"
        style="@style/ListItemTextColor"
        />

および my_single_choice_layout.xml

<?xml version="1.0" encoding="utf-8"?>
<RadioButton xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:id="@+id/my_choice_radio"
    android:layout_height="match_parent"
    android:button="@null"
    android:drawableRight="@android:drawable/btn_radio"
    android:text="Option"
    style="@style/ListItemTextColor" >


</RadioButton>
4

2 に答える 2

5

これを試して:

list.setAdapter(new EfficientAdapter(context,R.layout.my_single_choice_layout, choice));

次に、クラスを作成します

 public class EfficientAdapter extends ArrayAdapter {

         private LayoutInflater mInflater;

            private String[] mStrings;

            private int mViewResourceId;

            public EfficientAdapter(Context ctx, int viewResourceId,String[] strings) {
                super(ctx, viewResourceId, strings);

                mInflater = (LayoutInflater)ctx.getSystemService(
                        Context.LAYOUT_INFLATER_SERVICE);
                mStrings = strings;

                mViewResourceId = viewResourceId;
            }
            @Override
            public int getCount() {
                return mStrings.length;
            }

            @Override
            public String getItem(int position) {
                return mStrings[position];
            }

            @Override
            public long getItemId(int position) {
                return position;
            }

            @Override
            public View getView(int position, View convertView, ViewGroup parent) {
                convertView = mInflater.inflate(mViewResourceId, null);

                convertView.setMinimumHeight(132);
                TextView tv = (TextView)convertView.findViewById(R.id.option_text); //Give Id to your textview
                tv.setText(mStrings[position]);
                    tv.setTextColor(Color.RED);
                RadioButtons r=(RadioButtons)convertview.findviewById(Radio button id);
                r.setOnCheckedListener(new ur listener()
{
/////////Do whatever you wanna do overhere
});

                return convertView;
            }

    }

それが役に立てば幸い。

于 2013-05-22T08:40:05.173 に答える
0

そのためには、カスタム アダプターを使用する必要があります。

jst 参照用のサンプル コード。完全な実装ではありません。

class Myadapter extends ArrayAdapter<String>{

        LayoutInflater inflater=null;

        public Myadapter(Context context, int resource, int textViewResourceId,
                List<String> objects) {
            super(context, resource, textViewResourceId, objects);
             inflater = (LayoutInflater)getLayoutInflater();
        }
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            // TODO Auto-generated method stub

            View row = convertView;
            if(convertView==null){
              row= inflater.inflate(R.layout.activity_list_item, null);

              RadioButton rb = row.findViewById(R.id.radiobtn);

              rb.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {

                @Override
                public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
                    // TODO Auto-generated method stub

                    //here write your code for radio button event 

                }
            });

            }
            return row;
        }
    }
于 2013-05-22T07:36:55.153 に答える