RadioGroup 嵌套 GridView 遇到的坑

RadioGroup 嵌套 GridView 实现九宫格模式,会导致RadioButton的单选效果失效,另外由于之前的代码存在模拟单选效果,因此我决定采用模拟单选来解决RadioGroup 嵌套GridView实现九宫格导致的单选失效问题,当然,该问题,还是建议自定义实现RadioGroup实现流式布局进行处理.

以下是代码贴:
dialog_reload_choice.xml

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

    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:gravity="center_vertical"
        android:text="@string/macau_reload_type"
        app:layout_heightPercent="10%h"
        app:layout_marginLeftPercent="1%h"
        app:layout_marginTopPercent="1%h"
        app:layout_textSizePercent="@string/percent_3w" />


    <com.zhy.android.percent.support.PercentLinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:orientation="horizontal"
        app:layout_heightPercent="@string/percent_25h">

        <RadioGroup
            android:id="@+id/macau_reload_type"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_marginLeftPercent="10%w"
            app:layout_marginRightPercent="10%w"
            android:gravity="center"
            android:orientation="horizontal">

            <RadioButton
                android:id="@+id/macau_reload_mop"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.5"
                android:button="@drawable/btn_charge_bg"
                android:checked="true"
                android:gravity="center"
                android:text="@string/macau_reload_mop"
                app:layout_textSizePercent="@string/percent_15w" />

            <RadioButton
                android:id="@+id/macau_reload_rmb"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="0.5"
                android:button="@drawable/btn_charge_bg"
                android:gravity="center"
                android:text="@string/macau_reload_rmb"
                app:layout_textSizePercent="@string/percent_15w" />
        </RadioGroup>

    </com.zhy.android.percent.support.PercentLinearLayout>


    <TextView
        android:id="@+id/title_reload_charge"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:gravity="center_vertical"
        app:layout_heightPercent="10%h"
        app:layout_marginLeftPercent="1%h"
        app:layout_marginTopPercent="1%h"
        app:layout_textSizePercent="@string/percent_3w" />


    <com.zhy.android.percent.support.PercentLinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_gravity="center"
        android:gravity="center"
        app:layout_heightPercent="@string/percent_66h">

        <RadioGroup
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_marginLeftPercent="5%w"
            app:layout_marginRightPercent="5%w"
            android:layout_gravity="center"
            android:gravity="center"
            app:layout_marginTopPercent="2%h">

            <GridView
                android:id="@+id/reload_choice"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_gravity="center"
                android:gravity="center"
                android:horizontalSpacing="10dp"
                android:numColumns="4"
                android:scrollbars="none"
                android:verticalSpacing="10dp" />
        </RadioGroup>

    </com.zhy.android.percent.support.PercentLinearLayout>

</com.zhy.android.percent.support.PercentLinearLayout>

item_reload_value.xml

<?xml version="1.0" encoding="utf-8"?>
<com.zhy.android.percent.support.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/item_radiobutton"
    android:layout_width="fill_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_height="fill_parent"
    android:orientation="horizontal">

    <ImageView
        android:id="@+id/item_radioimg"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/btn_charge_bg"
        android:layout_centerVertical="true" />

    <TextView
        android:id="@+id/item_radiotext"
        android:layout_marginLeft="26dip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        app:layout_textSizePercent="@string/percent_15w"
        android:layout_toRightOf="@+id/item_radioimg" />
</com.zhy.android.percent.support.PercentRelativeLayout>
package com.keytop.TITS.ui;

import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.support.annotation.IdRes;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.AdapterView;
import android.widget.GridView;
import android.widget.RadioGroup;
import android.widget.SimpleAdapter;
import android.widget.TextView;

import com.keytop.TITS.BaseActivity;
import com.keytop.TITS.R;
import com.keytop.TITS.data.MyApplication;
import com.keytop.TITS.data.Parameters;
import com.keytop.TITS.event.UIEvent;
import com.keytop.TITS.util.I18NData;
import com.keytop.TITS.util.SmallUtils;
import com.keytop.commons.lang.SizeUtils;

import java.util.ArrayList;
import java.util.HashMap;

import de.greenrobot.event.EventBus;

/**
 * 澳门通充值选项
 * Created by fengwenhua on 2017/4/26.
 */

public class MacauReloadChoice {
    private final static String KEY_MACAU_SELECT="reloadSelect";
    private final static String KEY_MACAU_VALUE="reloadValue";
    private int currentSelectItemId;
    /**当前选中的数据*/
    private SimpleAdapter adapter;
    private GridView gridView;
    private RadioGroup radioGroup;
    private View dialog_reload_choice;
    private TextView title_reload_charge;

    public enum ButtonStatus{
        SELECT,UNSELECT;
    }


    /**重置当前选项是否选中*/
    @SuppressWarnings("unchecked")
    private void resetBackground(SimpleAdapter adapter, int selectedItem,ButtonStatus status) {
        HashMap<String, Object> map = (HashMap<String, Object>)adapter.getItem(selectedItem);
        if (status.name().equalsIgnoreCase(ButtonStatus.UNSELECT.name())) {
            map.put(KEY_MACAU_SELECT, R.drawable.btn_charge_false);
        }else {
            map.put(KEY_MACAU_SELECT, R.drawable.btn_charge_true);
        }
        adapter.notifyDataSetChanged();
    }

    public interface MacauReloadCallback{
        void reloadFail(String errorTips);
        void reloadSuccess();
    }

    public void displayMacauReload(Activity activity, final MacauReloadCallback macauReloadCallback){
        currentSelectItemId = 0;//初始化
        dialog_reload_choice = activity.getLayoutInflater().inflate(R.layout.dialog_reload_choice,null);
        title_reload_charge = (TextView) dialog_reload_choice.findViewById(R.id.title_reload_charge);
        radioGroup = (RadioGroup) dialog_reload_choice.findViewById(R.id.macau_reload_type);
        radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, @IdRes int checkedId) {
                switch (checkedId){
                    case R.id.macau_reload_rmb:
                        Parameters.reloadType = Parameters.ReloadStatus.RMB.name();
                        title_reload_charge.setText(String.format(I18NData.getI18NString(R.string.macau_reload_charge),Parameters.ReloadStatus.RMB.name()));
                        break;
                    default://case R.id.macau_reload_mop:
                        Parameters.reloadType = Parameters.ReloadStatus.MOP.name();
                        title_reload_charge.setText(String.format(I18NData.getI18NString(R.string.macau_reload_charge),Parameters.ReloadStatus.MOP.name()));
                        break;
                }
            }
        });
        adapter = getRadioButtonAdapter(activity);
        gridView = (GridView) dialog_reload_choice.findViewById(R.id.reload_choice);
        gridView.setAdapter(adapter);
        //初始化
        Parameters.reloadValue = SmallUtils.obtainMacauReloadValue(MyApplication.instance.getmKtTitsConfig().getMacauReloadValues()[currentSelectItemId]);
        resetBackground(adapter,currentSelectItemId,ButtonStatus.SELECT);//选中标志
        title_reload_charge.setText(String.format(I18NData.getI18NString(R.string.macau_reload_charge),Parameters.ReloadStatus.MOP.name()));

        gridView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                if (position!=currentSelectItemId){
                    resetBackground(adapter,currentSelectItemId,ButtonStatus.UNSELECT);//重置状态标志
                    currentSelectItemId = position;
                    resetBackground(adapter,position,ButtonStatus.SELECT);//选中标志
                    Parameters.reloadValue = SmallUtils.obtainMacauReloadValue(MyApplication.instance.getmKtTitsConfig().getMacauReloadValues()[position]);
                }
            }
        });
        AlertDialog dialog = new AlertDialog.Builder(activity).setTitle(R.string.macau_reload_tips).setView(dialog_reload_choice).setPositiveButton(I18NData.getI18NString(R.string.activity_charge_confirm), new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                if (Parameters.reloadValue>0) {
                    UIEvent reloadEvent = new UIEvent(Parameters.MSG_MACAU_RELOAD_CONFIRM);
                    reloadEvent.setToastMsg(String.format(I18NData.getI18NString(R.string.macau_reload_confirm), SizeUtils.moneyFenToYuan(Parameters.reloadValue)));
                    EventBus.getDefault().post(reloadEvent);
                }else {
                    macauReloadCallback.reloadFail(I18NData.getI18NString(R.string.macau_reload_value_illegal));
                }
            }
        }).setNegativeButton(I18NData.getI18NString(R.string.cancel),null).show();

        Window dialogWindow = dialog.getWindow();
        WindowManager.LayoutParams p = dialogWindow.getAttributes(); // 获取对话框当前的参数值
        p.height = (int) (BaseActivity.SCREEN_HEIGHT * 0.6); // 高度设置为屏幕的0.5
        p.width = (int) (BaseActivity.SCREEN_WIDTH * 0.45); // 宽度设置为屏幕的0.45
        dialogWindow.setAttributes(p);
    }


    /**生成Adapter*/
    public SimpleAdapter getRadioButtonAdapter(Activity activity) {
        ArrayList<HashMap<String, Object>> data = new ArrayList<>();
        for (int i = 0; i < MyApplication.instance.getmKtTitsConfig().getMacauReloadValues().length; i++) {
            HashMap<String, Object> map = new HashMap<String, Object>();
            map.put(KEY_MACAU_VALUE, MyApplication.instance.getmKtTitsConfig().getMacauReloadValues()[i]);
            data.add(map);
        }
        SimpleAdapter simperAdapter = new SimpleAdapter(activity, data, R.layout.item_reload_value, new String[] {KEY_MACAU_SELECT,KEY_MACAU_VALUE}, new int[] {R.id.item_radioimg, R.id.item_radiotext});
        return simperAdapter;
    }
}

模拟效果
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,406评论 5 475
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,976评论 2 379
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,302评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,366评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,372评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,457评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,872评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,521评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,717评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,523评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,590评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,299评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,859评论 3 306
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,883评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,127评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,760评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,290评论 2 342

推荐阅读更多精彩内容