Let see how to arrange buttons according to the user selection as shown below:
option 01 you should change the xml file and in option 02 you should change the java code.
<LinearLayout android:orientation="vertical" android:id="@+id/linearLayout1"
android:layout_height="fill_parent" android:layout_width="fill_parent">
<Button android:text="Button" android:id="@+id/button0"
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:layout_weight="1">Button>
<Button android:text="Button" android:id="@+id/button1"
android:layout_height="fill_parent" android:layout_width="fill_parent"
android:layout_weight="1" android:visibility="gone">Button>
<Button android:text="Button" android:id="@+id/button2"
android:layout_height="fill_parent" android:layout_weight="1"
android:layout_width="fill_parent" android:visibility="gone">Button>
LinearLayout>
Following java code would change the visibility according to the user selection.
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
switch(group.getCheckedRadioButtonId()){
case R.id.radio0:
button0.setVisibility(View.VISIBLE);
button1.setVisibility(View.GONE);
button2.setVisibility(View.GONE);
break;
case R.id.radio1:
button0.setVisibility(View.VISIBLE);
button1.setVisibility(View.VISIBLE);
button2.setVisibility(View.GONE);
break;
case R.id.radio2:
button0.setVisibility(View.VISIBLE);
button1.setVisibility(View.VISIBLE);
button2.setVisibility(View.VISIBLE);
break;
}
}
Let see if we want a layout to change as show below:
This can be down in two ways.
Option 01: changing the layout XML file to use the weight sum:
<LinearLayout android:orientation="vertical" android:id="@+id/linearLayout1"
android:layout_height="fill_parent" android:layout_width="fill_parent" android:weightSum="3">
<Button android:text="Button" android:id="@+id/button0"
android:layout_width="fill_parent"
android:layout_weight="1" android:layout_height="0dip">Button>
<Button android:text="Button" android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_weight="1" android:visibility="gone" android:layout_height="0dip"> Button>
<Button android:text="Button" android:id="@+id/button2"
android:layout_weight="1"
android:layout_width="fill_parent" android:visibility="gone" android:layout_height="0dip">Button>
LinearLayout>
Option 02: using java code:
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
switch(group.getCheckedRadioButtonId()){
case R.id.radio0:
button0.setVisibility(View.VISIBLE);
button1.setVisibility(View.INVISIBLE);
button2.setVisibility(View.
INVISIBLE);
break;
case R.id.radio1:
button0.setVisibility(View.VISIBLE);
button1.setVisibility(View.VISIBLE);
button2.setVisibility(View.
INVISIBLE);
break;
case R.id.radio2:
button0.setVisibility(View.VISIBLE);
button1.setVisibility(View.VISIBLE);
button2.setVisibility(View.VISIBLE);
break;
}
}
option 01 you should change the xml file and in option 02 you should change the java code.
7 comments:
Thanks for the clean example Man... Even this http://www.compiletimeerror.com/2013/06/android-linearlayout-example.html might help.. Have a look..
I appreciate your efforts because it conveys the message of what you are trying to say. It's a great skill to make even the person who doesn't know about the subject could able to understand the subject . Your blogs are understandable and also elaborately described. I hope to read more and more interesting articles from your blog. All the best.
rpa training in bangalore
best rpa training in bangalore
RPA training in bangalore
rpa course in bangalore
rpa training in chennai
rpa online training
Excellent blog, I wish to share your post with my folks circle. It’s really helped me a lot, so keep sharing post like this
python training Course in chennai
python training in Bangalore
Python training institute in bangalore
Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.
AWS Training in pune
AWS Online Training
AWS Training in Bangalore
Awesome,Thank you so much for sharing such an awesome blog.
sap hr courses in bangalore
sap hr classes in bangalore
sap hr training institute in bangalore
sap hr course syllabus
best sap hr training
sap hr training centers
sap hr training in bangalore
Such a very useful blog. Very interesting to read this blog. I would like to thank you for the efforts you had made for writing this awesome blog.
Best Software Training Institute in Chennai
Computer Software Training Institutes in Chennai
Best Placement Training Institute in Chennai
Best IT Training Institutes in chennai with Placement
Software Training institute
Placement Training in Chennai
best training institute in chennai
placement training institute in chennai
best software training institute in chennai with placement
Post a Comment