我已经看到了一些问题可能与此类似。 然而,这些情况是不同的,有些是不适合初学者。
所以我刚开始的Android最近。 请理解,我是新来的*.xml
。 总之,我关心的是关于嵌套LinearLayout
,只显示第一个View
。
<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:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="horizontal">
<TextView
android:layout_gravity="center"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_width="0dp"
android:textSize="20sp"
android:text="@string/app_title">
</TextView>
</LinearLayout>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:orientation="horizontal">
<Button
android:layout_gravity="center"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/button_ok"
android:onClick="changeMessage">
</Button>
<TextView
android:layout_gravity="center"
android:textSize="20sp"
android:id="@+id/this_text"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/sample_text">
</TextView>
</LinearLayout>
</LinearLayout>
这里的XML至今。 与此代码,仅第一TextView的仅表示。