AndroidアプリでTextViewをScrollViewする簡単なテストを行いましたが、ほとんどエラーはありませんが、警告(このScrollViewレイアウトまたはそのLinearLayoutの親は役に立たない)が表示され、何をすべきかわかりません。あなたの助けが欲しい
here is the code:
<LinearLayout android:id="@+id/LinearLayout01"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<ScrollView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_weight="1">
<TextView android:id="@+id/TextView01" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hi"/>
</ScrollView>
</LinearLayout>