我试图按照教程 om 如何在 android 中创建 Viewflipper。一切似乎都有效,唯一的就是我想要不同的布局。目前它包含 3 个按钮和一个 webview,3 个按钮位于顶部,webview 位于下方。我希望按钮位于底部,webview 位于上方。请帮助有需要的初学者!
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<HorizontalScrollView
android:id="@+id/main_horizontal_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<Button
android:id="@+id/main_access_profile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Profile"
android:textSize="25dp" />
<TextView
android:id="@+id/main_blank_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/main_access_profile"
android:text=""
android:textSize="25dp" />
<Button
android:id="@+id/main_access_portfolio"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/main_blank_1"
android:text="Portfolio"
android:textSize="25dp" />
<TextView
android:id="@+id/main_blank_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/main_access_portfolio"
android:text=""
android:textSize="25dp" />
<Button
android:id="@+id/main_access_history"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/main_blank_2"
android:text="History"
android:textSize="25dp" />
</RelativeLayout>
</HorizontalScrollView>
<ViewFlipper
android:id="@+id/main_flipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/main_horizontal_container" >
<include
android:id="@+id/main_test1"
layout="@layout/test1" />
<include
android:id="@+id/main_test2"
layout="@layout/test2" />
<include
android:id="@+id/main_test3"
layout="@layout/test3" />
</ViewFlipper>
</RelativeLayout>
这是包含 WebView 的 test1.xml 文件!
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/test1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="421dp" />
</LinearLayout>
谢谢!