私のアプリケーションでは、画面上のレイアウト全体をスクロールする機能を提供したいと考えています。ここでは、ScrollView 内に Linearlayout もラップしていますが、スクロール機能は提供していません。以下は私のレイアウトコードです:
<?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"
android:id="@+id/ScrollView01"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingTop="50dp"
android:weightSum="1"
android:layout_marginTop="67dp"
>
<ImageView
android:id="@+id/artistImageView"
android:layout_width="fill_parent"
android:layout_height="150dp"
android:paddingTop="10dp"
android:layout_marginTop="67dp"
android:background="#000000"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="BIOGRAPHY"
android:textColor="#eeeeee"
android:background="#000000"
android:id="@+id/txt1"
/>
<ImageView
android:src="@drawable/separator_bio"
android:scaleType="fitXY"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:id="@+id/sep1"
/>
<TextView
android:id="@+id/artistView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textStyle="bold"
android:textColor="#ffffff"
android:paddingLeft="10dp"
android:paddingRight="5dp"
android:background="#000000"
/>
</LinearLayout>
</ScrollView>
解決策を提案してください。ありがとうございます。