gpt4 book ai didi

android - LinearLayout 中元素间距的最佳实践

转载 作者:行者123 更新时间:2023-11-29 15:00:34 25 4
gpt4 key购买 nike

我创建了一个包含三个相同元素的简单 LinearLayout:

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Hello"/>

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Hello"/>

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Hello"/>
</LinearLayout>

现在我要在每对元素之间引入 8dp 空间。

以下哪种解决方案被认为更清洁?

enter image description here或者: enter image description here

或者其他的?

最佳答案

试试这个。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Hello" />

<android.support.v4.widget.Space
android:layout_width="8dp"
android:layout_height="wrap_content" />

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Hello" />

<android.support.v4.widget.Space
android:layout_width="8dp"
android:layout_height="wrap_content" />

<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Hello" />
</LinearLayout>

为您的代码添加空间。

<android.support.v4.widget.Space
android:layout_width="8dp"
android:layout_height="wrap_content" />

关于android - LinearLayout 中元素间距的最佳实践,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46670466/

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