我已经看到了一些与此类似的问题。但是,这些情况不同,有些不适合初学者。
所以我最近才开始使用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。