如何在 android 中将布局平均分为两部分
how to equally divide the layout in 2 parts in android
我想在 phone 和平板电脑中将两个分频器的布局平均分为两部分。以下是我尝试过的事情:
<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"
tools:context=".LayoutActivity" >
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
您应该在布局中使用 weightSum 并在两个文本视图中设置权重,请参见示例:
<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"
tools:context=".LayoutActivity"
android:weightSum="1">
<TextView
android:id="@+id/textview"
android:layout_width="0dp"
android:layout_weight="0.5"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textview1"
android:layout_width="0dp"
android:layout_weight="0.5"
android:layout_height="wrap_content" />
你应该给它添加一个重量容器和一个方向,这取决于你想要它是垂直还是水平。
<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="horizontal"
tools:context=".LayoutActivity" >
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight= 0.5/>
<TextView
android:id="@+id/textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight= 0.5 />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context=".LayoutActivity"
android:weightSum="1">
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_weight="0.5"
android:layout_height="0dp" />
<TextView
android:id="@+id/textview1"
android:layout_width="match_parent"
android:layout_weight="0.5"
android:layout_height="0dp" />
</LinearLayout>
使用权重属性进行线性布局,使其成为您想要的。就像你想平分 textview 然后给
android:layout_weight="1"
在两个文本视图中
我想在 phone 和平板电脑中将两个分频器的布局平均分为两部分。以下是我尝试过的事情:
<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"
tools:context=".LayoutActivity" >
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
您应该在布局中使用 weightSum 并在两个文本视图中设置权重,请参见示例:
<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"
tools:context=".LayoutActivity"
android:weightSum="1">
<TextView
android:id="@+id/textview"
android:layout_width="0dp"
android:layout_weight="0.5"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textview1"
android:layout_width="0dp"
android:layout_weight="0.5"
android:layout_height="wrap_content" />
你应该给它添加一个重量容器和一个方向,这取决于你想要它是垂直还是水平。
<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="horizontal"
tools:context=".LayoutActivity" >
<TextView
android:id="@+id/textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight= 0.5/>
<TextView
android:id="@+id/textview1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight= 0.5 />
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="match_parent"
tools:context=".LayoutActivity"
android:weightSum="1">
<TextView
android:id="@+id/textview"
android:layout_width="match_parent"
android:layout_weight="0.5"
android:layout_height="0dp" />
<TextView
android:id="@+id/textview1"
android:layout_width="match_parent"
android:layout_weight="0.5"
android:layout_height="0dp" />
</LinearLayout>
使用权重属性进行线性布局,使其成为您想要的。就像你想平分 textview 然后给
android:layout_weight="1"
在两个文本视图中