gpt4 book ai didi

java - 如何使用安卓:layout_weight consistently for all screensizes

转载 作者:行者123 更新时间:2023-12-01 06:23:15 24 4
gpt4 key购买 nike

我有一个使用 android:layout_weight 作为标题间距的应用程序,但是当我在不同的屏幕尺寸上查看该应用程序时,间距会发生变化(与下面的行数据不对齐)。

我有 5 个 header ,但 header 未在所有设备上正确对齐。

如何确保使用 android:layout_weight 来实现适用于所有屏幕尺寸的通用间距布局?

<LinearLayout
android:id="@+id/listTitles"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/table_heading"
android:paddingBottom="7dp"
android:paddingTop="8dp" >

<TextView
android:id="@+id/textView1"
android:layout_width="42dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1.1"
android:gravity="center"
android:text="POS"
android:textColor="#ffffff"
android:textSize="12sp" />


<TextView
android:id="@+id/textView2"
android:layout_width="90dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1.8"
android:gravity="left|center"
android:text="NAME"
android:textColor="#ffffff"
android:textSize="12sp" />

<TextView
android:id="@+id/textView7"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1.2"
android:gravity="center"
android:text="BIRTH"
android:textColor="#ffffff"
android:textSize="12sp" />

<TextView
android:id="@+id/textView3"
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1.2"
android:gravity="center"
android:text="SCORE"
android:textColor="#ffffff"
android:textSize="12sp" />

<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1.4"
android:gravity="center"
android:text="POINTS"
android:textColor="#ffffff"
android:textSize="12sp" />

<TextView
android:id="@+id/textView5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1.4"
android:gravity="right|center"
android:paddingRight="10dp"
android:text="ROUND"
android:textColor="#ffffff"
android:textSize="12sp" />
</LinearLayout>

最佳答案

这里有两个问题:

  1. 使用layout_weight时,必须将layout_width设置为0dp

  2. 表格或 ListView 中的行必须具有相同的 layout_weightlayout_width 值。

关于java - 如何使用安卓:layout_weight consistently for all screensizes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35513860/

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