| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:local="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <EditText
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="40dp"
- local:MvxBind="Text Hello"
- />
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:textSize="40dp"
- local:MvxBind="Text Hello"
- />
- </LinearLayout>
|