Created
February 12, 2015 03:07
-
-
Save NearLinHere/8e08c06bf6ab0a54c4df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="fill_parent" | |
android:layout_height="fill_parent" | |
android:orientation="vertical" > | |
<TextView | |
android:id="@+id/textView1" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Radio Button Group with 2 rows" | |
android:textAppearance="?android:attr/textAppearanceMedium" /> | |
<Button | |
android:id="@+id/btn_get" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="Get choosen radio button" /> | |
<TextView | |
android:id="@+id/textView2" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="The choosen option is: " | |
android:textAppearance="?android:attr/textAppearanceMedium" /> | |
<TextView | |
android:id="@+id/tvw_result" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="" | |
android:textAppearance="?android:attr/textAppearanceMedium" /> | |
</LinearLayout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment