我知道设置百分比是不可能的,您可以设置某些图像的重量来扩展它们的高度。我想要做的是指定布局相对于其所在布局的高度。基本上我有这样的东西
<LinearLayout android:layout_height="fill_parent">
<LinearLayout>
</LinearLayout>
</LinearLayout>
当然这是一个非常简化的版本,只是为了让你能理解我的胡言乱语。基本上我想将内部线性布局设置为主线性布局的50%左右。
这样做的最佳方式是什么?
答案 0 :(得分:101)
有一个名为android:weightSum的属性。
您可以在内部linear_layout中设置android:weightSum =“2”,在内部linear_layout中设置android:weight =“1”。
请记住将内部linear_layout设置为fill_parent,以便weight属性可以按预期工作。
顺便说一句,我不认为有必要添加第二个视图,尽管我还没有尝试过。 :)<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:weightSum="2">
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_weight="1">
</LinearLayout>
</LinearLayout>
答案 1 :(得分:17)
您可以在该下方添加另一个空布局,并将它们设置为具有相同的布局权重。他们应该获得50%的空间。
答案 2 :(得分:10)
android:layout_weight =“。YOURVALUE”是以百分比实现的最佳方式
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/logTextBox"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight=".20"
android:maxLines="500"
android:scrollbars="vertical"
android:singleLine="false"
android:text="@string/logText" >
</TextView>
</LinearLayout>
答案 3 :(得分:8)
就像你说的那样,我建议使用重量。百分比将是非常有用的(不知道为什么他们不受支持),但你可以这样做的一种方式是这样的:
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
>
<LinearLayout
android:layout_height="0dp"
android:layout_width="fill_parent"
android:layout_weight="1"
>
</LinearLayout>
<View
android:layout_height="0dp"
android:layout_width="fill_parent"
android:layout_weight="1"
/>
</LinearLayout>
需要注意的是,你有一个空视图会占用剩余的空间。不理想,但它可以满足您的需求。
答案 4 :(得分:4)
通过引入ContraintLayout,可以使用指南实施:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.eugene.test1.MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#AAA"
android:text="TextView"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toTopOf="@+id/guideline" />
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5" />
</android.support.constraint.ConstraintLayout>
您可以在本文Building interfaces with ConstraintLayout中阅读更多内容。