我希望我的应用能够水平滚动,以便它可以在页面之间滑动。但是当我在android sdk上使用这个功能时,它不会让我让xml布局填充父级,即它不会让我有一个全屏来包含我的按钮和对象。
关于如何解决这个问题或者替代方法是什么的任何想法?
以下是代码:
<?xml version="1.0" encoding="utf-8"?>
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="348dp"
android:layout_height="559dp" >
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="341dp"
android:layout_marginLeft="146dp"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
</HorizontalScrollView>
答案 0 :(得分:0)
将相对布局更改为LinearLayout。与垂直ScrollView类似,它使用LinearLayout。
以下是我在其中一个项目中的示例布局:
<HorizontalScrollView
android:id="@+id/horizontalScrollView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scrollbars="none" >
<LinearLayout
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/class_tab" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/exam" />
<Button
android:id="@+id/button_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/more" />
</LinearLayout>
</HorizontalScrollView>