![我正在尝试制作类似于第一个屏幕截图的垂直滚动视图。它是Itaca的应用程序。我使用ImageButton这样做。请告诉我获得结果的最佳方法。提前谢谢。
`
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="@drawable/backg" >
<ScrollView
android:layout_width="wrap_content"
android:layout_height="300dp"
android:layout_alignParentRight="true" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="right"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:background="#006BB2" >
<ImageButton
android:id="@+id/home"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="80dp"
android:layout_marginRight="80dp"
android:layout_marginTop="80dp"
android:background="@drawable/homeicon" />
<ImageButton
android:id="@+id/company"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="80dp"
android:layout_marginRight="80dp"
android:layout_marginTop="8dp"
android:background="@drawable/homeicon1" />
</LinearLayout>
</ScrollView>
</LinearLayout>
&#13;
`] 1
答案 0 :(得分:0)
将RelativeLayout
添加为父版式。
将您的孩子ScrollView
添加为2 ImageButton
。
添加您的其他ImageView