开发者

How to add radio buttons and checkBox in the same ListPreference in android?

开发者 https://www.devze.com 2023-01-26 06:20 出处:网络
HI, How can i add, 4-radiobuttons and 2-checkBoxes in the same ListPreference in Android PreferenceScreen in android ? Need Help.

HI,

How can i add, 4-radiobuttons and 2-checkBoxes in the same ListPreference in Android PreferenceScreen in android ? Need Help. Than开发者_Python百科ks in adv.

rgds, Praween


create a xml with 4 buttons and 2 checkboxes and where you want use layout inflater like.....

     @Override
    public View getView(int position, View convertView, ViewGroup parent)
    {
            LayoutInflater inflater = LayoutInflater.from(context);
        View view = inflater.inflate(R.layout.relative, null);
        Button button1 = (Button) view.findViewById(R.id.button1);
        .........
            ........
            Button button4 = (Button) view.findViewById(R.id.button4);
            same for Checkbox  

        return view;
    }
0

精彩评论

暂无评论...
验证码 换一张
取 消