gpt4 book ai didi

Android - 3 列行布局 - 如何让它占据屏幕的百分比?

转载 作者:太空宇宙 更新时间:2023-11-03 12:22:06 25 4
gpt4 key购买 nike

我有这种硬编码宽度的布局:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingTop="4dip"
android:paddingBottom="6dip"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="13sp"
android:weightSum="1.0">

<TextView android:id="@+id/TRAIN_CELL"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".60"/>




<TextView android:id="@+id/FROM_CELL"
android:layout_width="0dp"
android:textSize="20sp"
android:textStyle="bold"
android:gravity="center"
android:textColor="@color/light_best_blue"
android:layout_height="wrap_content"
android:layout_weight=".20"/>


<TextView android:id="@+id/TO_CELL"
android:layout_width="0dp"
android:textSize="20sp"
android:textStyle="bold"
android:gravity="center"
android:layout_weight=".20"
android:textColor="@color/light_best_blue"
android:layout_height="wrap_content" />

</LinearLayout>

但是有没有办法给每列一个宽度的百分比?

谢谢!

最佳答案

使用

layout_width="0dp"
layout_weight="x"

其中 x 是您在每个元素上的百分比。参见 http://developer.android.com/guide/topics/ui/layout/linear.html

关于Android - 3 列行布局 - 如何让它占据屏幕的百分比?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12321315/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com