我有以下布局,但如果内容太多而无法显示,我想让它垂直滚动。ImageView, 'imagePhoto' 是使用设备相机拍摄的图像。如果照片是纵向拍摄的,那么布局需要能够滚动。我尝试在 LinearLayout 之前添加一个 ScrollView,如下所示:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
但它似乎没有用。
有什么建议么??
这是布局xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widgetUploadPhoto"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffffff"
android:orientation="vertical">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/topLevelMenuBackground"
android:orientation="horizontal">
<TextView
android:id="@+id/tvHeaderText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text=""
android:textColor="#ffffffff"
android:textSize="20sp"
android:shadowColor="#7F000000"
android:shadowDx="1"
android:shadowDy="1"
android:shadowRadius="2"
android:layout_centerVertical="true" />
</RelativeLayout>
<TextView
android:id="@+id/tvYourCurrentPhoto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="Your current photo:"
android:background="#ffffffff"
android:textColor="#ff626262"
android:paddingTop="10dp"
android:paddingLeft="10dp"
android:paddingBottom="10dp"
android:textSize="@dimen/text_size_medium"
android:layout_marginLeft="0dp"
android:layout_marginTop="0dp"
android:layout_marginRight="0dp"
android:layout_marginBottom="0dp"
android:visibility="gone" />
<ImageView
android:id="@+id/imagePhoto"
android:src="@drawable/OrangeAccessoryButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="center_horizontal"
android:background="#ffffffff"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
android:paddingTop="15dp"
android:paddingRight="15dp"
android:paddingBottom="15dp"
android:paddingLeft="15dp"
android:visibility="gone" />
<TextView
android:id="@+id/empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="Select an option below to change your photo."
android:background="#ffffffff"
android:textColor="#ff626262"
android:paddingTop="15dp"
android:paddingRight="15dp"
android:paddingBottom="15dp"
android:paddingLeft="15dp"
android:textSize="@dimen/text_size_medium" />
<ListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:focusable="false"
android:layout_weight="1" />
</LinearLayout>
感谢您的任何帮助/建议。
更新的 XML:
注意:这可行,但不是预期的结果。我只希望RelativeView 中的东西滚动。第一个 TexView 是一个标题,我想保持静止并且它下面的视图可以滚动。基本上,一切都应该滚动,但相对 vie 部分。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/widgetUploadPhoto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#ffffffff"
android:orientation="vertical">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/topLevelMenuBackground"
android:orientation="horizontal">
<TextView
android:id="@+id/tvHeaderText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text=""
android:textColor="#ffffffff"
android:textSize="20sp"
android:shadowColor="#7F000000"
android:shadowDx="1"
android:shadowDy="1"
android:shadowRadius="2"
android:layout_centerVertical="true" />
</RelativeLayout>
<TextView
android:id="@+id/tvYourCurrentPhoto"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="Your current photo:"
android:background="#ffffffff"
android:textColor="#ff626262"
android:paddingTop="10dp"
android:paddingLeft="10dp"
android:paddingBottom="10dp"
android:textSize="@dimen/text_size_medium"
android:layout_marginLeft="0dp"
android:layout_marginTop="0dp"
android:layout_marginRight="0dp"
android:layout_marginBottom="0dp"
android:visibility="gone" />
<ImageView
android:id="@+id/imagePhoto"
android:src="@drawable/OrangeAccessoryButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_gravity="center_horizontal"
android:background="#ffffffff"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"
android:layout_marginBottom="0dp"
android:paddingTop="15dp"
android:paddingRight="15dp"
android:paddingBottom="15dp"
android:paddingLeft="15dp"
android:visibility="gone" />
<TextView
android:id="@+id/empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="left"
android:text="Select an option below to change your photo."
android:background="#ffffffff"
android:textColor="#ff626262"
android:paddingTop="15dp"
android:paddingRight="15dp"
android:paddingBottom="15dp"
android:paddingLeft="15dp"
android:textSize="@dimen/text_size_medium" />
<ListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:focusable="false"
android:layout_weight="1" />
</LinearLayout>
</ScrollView>