如果按下线性布局

时间:2017-04-10 08:30:42

标签: android android-layout radio-button android-linearlayout

如果我按下其他地方(不是单选按钮),而是在1个线性布局内的图像,文本视图等上,如何选择单选按钮。

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

    <LinearLayout
        android:id="@+id/layout_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <ImageView
            android:id="@+id/card_balance"
            android:layout_width="150dp"
            android:layout_height="150dp"
            android:layout_gravity="center_vertical"
            android:paddingLeft="20dp" />

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:paddingLeft="10dp"
            android:textColor="@color/dc_white" />

        <RadioGroup
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:gravity="right"
            android:paddingRight="20dp">

            <RadioButton
                android:id="@+id/radio_button_payment"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </RadioGroup>

    </LinearLayout>
    
    
</RelativeLayout>

以下是适应器:PaymentAdapter.java

     @Override
        public View getView(final int position, View convertView, ViewGroup parent) {
            LayoutInflater inflater = (LayoutInflater) context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);

            View allView = inflater.inflate(R.layout.item_choose_payment, parent, false);
            TextView txt1 = (TextView) allView.findViewById(R.id.textView1);
            ImageView imageView = (ImageView) allView.findViewById(R.id.card_balance);
            final RadioButton r = (RadioButton) allView.findViewById(R.id.radio_button_payment);
            LinearLayout layout_card = (LinearLayout) allView.findViewById(R.id.layout_1);

            r.setChecked(position == selectedPosition);
            r.setTag(position);
            r.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View view) {
                    selectedPosition = (Integer) view.getTag();
                    notifyDataSetChanged();
                }
            });
}

现在条件是我只能按下单选按钮。

我已经尝试将onClickListener添加到线性布局,是的,我可以按下线性布局,但单选按钮不会只选择1而是全部选中。

此代码用于linearLayout onClick

 layout_card.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                r.setChecked(position == selectedPosition);
                r.setTag(position);
                if (r.isChecked()) {
                    r.setChecked(true);
                    r.setSelected(true);
                } else if (!r.isChecked()) {
                    r.setChecked(false);
                    r.setSelected(false);
                }
            }
        });

对不起我的不好解释,任何帮助都非常感谢我。 谢谢

1 个答案:

答案 0 :(得分:2)

getView(...)中,写下

layout_card.setTag(position);

并将点击监听器更改为

layout_card.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            selectedPosition = Integer.parseInt(v.getTag().toString());
            notifyDataSetChange();
        }
    });

删除以下代码(如果不需要)

        r.setTag(position);
        r.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                selectedPosition = (Integer) view.getTag();
                notifyDataSetChanged();
            }
        });