-4

在此处输入图像描述

我想为这些图像拍摄一个滚动视图。布局应该能够在垂直方向滚动。我在线性布局中采用线性布局,但无法实现这一点。谁能告诉我如何解决这个问题。

4

2 回答 2

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>

而是使用相对布局...

于 2013-08-09T07:04:18.203 回答
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>

于 2013-08-09T07:04:41.893 回答