我的目标:按钮 1 位于顶部,按钮 2 位于下方。ImageView 必须保持半屏。其他 textView 将保留另一半屏幕。webview 是不可见的。我不能将 imageview 半屏和其他 textview 保留到另一个半屏。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#103080"
android:text="yes"
android:textColor="#f7d404" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="146dp"
android:layout_weight="1"
android:src="@drawable/logo" />
<TextView
android:id="@+id/textView3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="TextView" />
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/button1"
android:gravity="center_horizontal"
android:text="@string/info2"
android:textColor="#103080"
android:textSize="20sp" />
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="invisible" />
<TextView
android:id="@+id/textView2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="right"
android:textSize="16sp"
android:textStyle="bold"
android:typeface="sans" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#103080"
android:text="Exit"
android:textColor="#f7d404" />
</LinearLayout>
</LinearLayout>