0

ポップアップウィンドウでスクロールビューを使用しようとしていますが、ある程度は機能しますが、下にスクロールしてもテキストは表示されます-ポップアップウィンドウでこのコードを使用するにはどうすればよいですか?

 <ScrollView 
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="wrap_content"
 android:layout_height="fill_parent"
 android:orientation="vertical"
 android:background="#333333">
 <LinearLayout
     android:layout_width="fill_parent"
     android:layout_height="wrap_content"
     android:padding="10dp"     >
     <TextView 
        android:id="@+id/popupView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical|center_horizontal"
        android:text="@string/helpmenu"
        android:textSize="1600pt"  />
     <Button
        android:id="@+id/close"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|center"
        android:text="Close"    />
 </LinearLayout>

4

1 に答える 1

3

jcw私はこの問題の解決策を見つけましたが、それは遅くなることを知っていますが、それでも将来の使用のためです。スクロールビューの上の相対的なフレームや線形などの親レイアウトを利用すると、直面している問題は解消されます。

于 2012-12-11T09:35:19.043 に答える