107 lines
3.7 KiB
XML
107 lines
3.7 KiB
XML
<foo.bar.filled.CustomLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context=".MainActivity"
|
|
android:orientation="vertical" >
|
|
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="500dip">
|
|
</View>
|
|
|
|
<HorizontalScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="horizontal">
|
|
|
|
<View
|
|
android:layout_width="500dip"
|
|
android:layout_height="fill_parent">
|
|
</View>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/username_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/username">
|
|
</TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/username"
|
|
android:layout_width="200dip"
|
|
android:layout_height="wrap_content">
|
|
</EditText>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/password_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/password">
|
|
</TextView>
|
|
|
|
<EditText
|
|
android:id="@+id/password"
|
|
android:layout_width="200dip"
|
|
android:layout_height="wrap_content">
|
|
</EditText>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="500dip"
|
|
android:layout_height="fill_parent">
|
|
</View>
|
|
|
|
</LinearLayout>
|
|
|
|
</HorizontalScrollView>
|
|
|
|
<Button
|
|
android:id="@+id/finish"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Finish">
|
|
</Button>
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="500dip">
|
|
</View>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</foo.bar.filled.CustomLinearLayout>
|