0

GUIの作成を担当する次のandroidxmlファイルをご覧ください

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/imageTitle"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="14dp"
        android:text="@string/imageDate"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="254dp"
        android:layout_weight="0.34"
        android:src="@drawable/test_image" />

    <TextView
        android:id="@+id/textView3"
        android:layout_width="fill_parent"
        android:layout_height="136dp"
        android:text="@string/imageDescription" />

</LinearLayout>
</ScrollView>

画面全体をスクロールしようとしていますが、発生していません。アップロードされた画像はあなたにそれを明らかにします。なぜスクロールしないのですか?私はAndroidを初めて使用し、これは私の2番目のアプリです。助けてください! 日食の中 Androidの実行の内部

4

3 に答える 3

2

スクロール ビューを使用する場合、ビュー全体をスクロール可能にする場合は、スクロール ビューを親レイアウトとして使用し、次のようなコードを使用します。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true">

ここで android:fillViewport="true"、これはレイアウトの画面全体を埋めることができる重要な部分です。その他の問題があればお尋ねください。

android.developerがfillViewportについて言うようにDefines whether the scrollview should stretch its content to fill the viewport.

于 2012-07-27T06:07:13.570 に答える
1

この2をこのように変更します

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >  


<TextView
     android:id="@+id/textView3"
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:text="@string/imageDescription" />
于 2012-07-27T06:06:11.897 に答える
1

LinearLayout で wrap_content を使用する必要があると思います

于 2012-07-27T06:01:38.250 に答える