Advertisement
Guest User

Untitled

a guest
Mar 1st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MXML 1.13 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    android:orientation="vertical"
  4.    android:layout_width="fill_parent"
  5.    android:layout_height="fill_parent">
  6.     <Button
  7.        android:text="Connect / Close"
  8.        android:layout_width="fill_parent"
  9.        android:layout_height="wrap_content"
  10.        android:id="@+id/button1"
  11.        />
  12.     <Button
  13.        android:text="btn 2"
  14.        android:layout_width="fill_parent"
  15.        android:layout_height="wrap_content"
  16.        android:id="@+id/button2" />
  17.     <RadioButton
  18.        android:text="RadioButton"
  19.        android:layout_width="match_parent"
  20.        android:layout_height="48.0dp"
  21.        android:id="@+id/radioButton1"/>
  22.     <RadioButton
  23.        android:text="RadioButton"
  24.        android:layout_width="match_parent"
  25.        android:layout_height="48.0dp"
  26.        android:id="@+id/radioButton1" />
  27.     <RadioButton
  28.        android:text="RadioButton"
  29.        android:layout_width="match_parent"
  30.        android:layout_height="48.0dp"
  31.        android:id="@+id/radioButton1" />
  32. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement