31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<TextView android:layout_width="fill_parent" android:id="@+id/tv_hello_world"
|
|
android:layout_height="wrap_content" android:text=" " />
|
|
|
|
<com.stone.shop.view.MultiViewGroup
|
|
android:id="@+id/mymultiViewGroup" android:layout_below="@id/tv_hello_world"
|
|
android:layout_height="wrap_content" android:layout_width="wrap_content">
|
|
</com.stone.shop.view.MultiViewGroup>
|
|
|
|
<Button android:id="@+id/bt_scrollRight" android:layout_width="200dip"
|
|
android:layout_toRightOf="@id/bt_scrollLeft"
|
|
android:layout_alignParentBottom="true" android:layout_height="wrap_content"
|
|
android:text="驻足观看" />
|
|
|
|
<Button
|
|
android:id="@+id/bt_scrollLeft"
|
|
style="@style/MyDialog"
|
|
android:layout_width="200dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentRight="true"
|
|
android:text="跳过,直接登录" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|