私は、webview で Web ページを取得するこの Android アプリを開発しており、画面の上部にこのバナーがあります。縦向きレイアウトでは目立ちませんが、横向きレイアウトでは画面の上半分近くを占めます。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/header"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="#EAC117"
android:textSize="35sp" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="50dp"
android:layout_height="50dp"
android:src="@raw/firstintentlogo"
android:layout_weight="1" android:contentDescription="@string/headLogoName"/>
</LinearLayout>
Javaファイルで「電話が横向きモードの場合、このlinearLayoutを非表示にします」と言う方法がわかりません。
助言がありますか?