我对一个 Android 应用程序进行了一个简单的测试,以滚动查看 TextView,几乎没有错误,但我收到警告(此 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>