ListView中RadioButton实现单项选择

1:FragmentHack5.java

public class FragmentHack5 extends Fragment {
    View view;
    ListView lvCountries;
    Button btnShow;
    CountryListAdapter adapter;
    List<String> list;

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);

        list = new ArrayList<String>();
        list.add("中国");
        list.add("俄罗斯");
        list.add("美国");
        list.add("德国");
        list.add("英国");
        list.add("西班牙");
        list.add("法国");
        list.add("巴西");
        list.add("印度");

    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        view = inflater.inflate(R.layout.fragment_hack5,container,false);

        btnShow = (Button)view.findViewById(R.id.btnShow);
        lvCountries = (ListView)view.findViewById(R.id.lvCountries);

        adapter = new CountryListAdapter(getActivity(),R.layout.list_country_item,list);

        lvCountries.setAdapter(adapter);

        btnShow.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Toast.makeText(getActivity(),adapter.getChoiceCountry(),Toast.LENGTH_SHORT).show();;
            }
        });

        return view;
    }
}

2:CountryListAdapter.java

public class CountryListAdapter extends ArrayAdapter<String>{

    int resourceId;
    int choiceId = -1;

    public CountryListAdapter(Context context, int resourceId, List<String> objects){
        super(context,resourceId,objects);

        this.resourceId = resourceId;
    }



    @Override
    public View getView(final int position, View convertView, ViewGroup parent) {
        String country = getItem(position);
        final ViewHolder holder;

        if(convertView==null){
            holder = new ViewHolder();
            convertView = LayoutInflater.from(getContext()).inflate(resourceId,null);

            holder.rbCountry = (RadioButton)convertView.findViewById(R.id.rbCountry);

            convertView.setTag(holder);
        }else{
            holder = (ViewHolder)convertView.getTag();
        }

        holder.rbCountry.setText(country);

        if(choiceId==position){
            holder.rbCountry.setChecked(true);
        }else{
            holder.rbCountry.setChecked(false);
        }


        holder.rbCountry.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if(holder.rbCountry.isChecked()){
                    choiceId = position;//记住当前选中的下标
                    CountryListAdapter.this.notifyDataSetChanged();
                }
            }
        });

        return convertView;
    }

    static class ViewHolder{
        public RadioButton rbCountry;
    }


    public String getChoiceCountry(){
        return getItem(choiceId);
    }
}

3:运行结果

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值