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