12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- style="@style/NavPage">
- <TextView
- android:id="@+id/result_tv"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="20dp"
- android:text="@string/enter"/>
-
- <Button
- android:id="@+id/reg_btn"
- style="@style/MMLineActionButton"
- android:layout_margin="10dp"
- android:text="@string/reg"/>
-
- <Button
- android:id="@+id/goto_send_btn"
- style="@style/MMLineActionButton"
- android:layout_margin="10dp"
- android:text="@string/goto_send"/>
-
- <Button
- android:id="@+id/launch_wx_btn"
- style="@style/MMLineActionButton"
- android:layout_margin="10dp"
- android:text="@string/launch_wx"/>
-
- <Button
- android:id="@+id/check_timeline_supported_btn"
- style="@style/MMLineActionButton"
- android:layout_margin="10dp"
- android:text="@string/check_timeline_supported"/>
- </LinearLayout>
|