Android アプリに次の xml があります。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/msngr"
>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/logo" />
</LinearLayout>
</ScrollView>
このコードまでは問題ありませんが、TextView、Edittext などの他のコンポーネントをこれに追加することはできません。
私はそれについての自動提案を取得しておらず、レッドラインで次のことを表示しています。
<linearlayout> has no known child tags
線形レイアウトでコンポーネントを作成するにはどうすればよいですか?
助けてください。