我想为此图片拍摄滚动视图。布局应该能够在垂直方向上滚动。我在线性布局中采用线性布局但无法实现此目的。谁能告诉我如何解决这个问题。
答案 0 :(得分:0)
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
>
<RelativeLayout
android:layout_width="318dp"
android:layout_height="495dp"
>
// Add Images here
</RelativeLayout>
</ScrollView>
而是使用相对布局......
答案 1 :(得分:0)
使用ScrollView像这样:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
android:orientation="horizontal" >
<!-- your code goes here -->
</LinearLayout>
</LinearLayout>
</TableLayout>