gpt4 book ai didi

android - TextView 宽度超过 LinearLayout 宽度

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

我的布局有一个奇怪的问题:

<?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"
android:layout_marginTop="15dp">
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#ff3333"
android:layout_weight="0.2"
/>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="0.8">
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#ff134415"
android:layout_weight="1"
/>
<View
android:layout_width="2dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>
<View
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>
<View
android:layout_width="5dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>
<View
android:layout_width="10dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ff8833"
android:paddingRight="10dp"
android:paddingLeft="15dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:text="this is a longgggggggggggggggggggggggg text"
/>
</LinearLayout>
</LinearLayout>

当textview的文本很长时,它的一部分会超过linearlayout的宽度。我哪里做错了?

enter image description here

最佳答案

添加另一个 LinearLayout 负责 TextView 的剩余填充,然后原来的 LinearLayout 负责绿色 View 的剩余填充。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="15dp">
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#ff3333"
android:layout_weight="0.2"
/>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_weight="0.8">
<View
android:layout_width="0dp"
android:layout_height="match_parent"
android:background="#ff134415"
android:layout_weight="1"
/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<View
android:layout_width="2dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>
<View
android:layout_width="3dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>
<View
android:layout_width="5dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>
<View
android:layout_width="10dp"
android:layout_height="match_parent"
android:background="#ff8833"
android:layout_marginRight="2dp"
/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#ff8833"
android:paddingRight="10dp"
android:paddingLeft="15dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:text="this is a longgggggggggggggggggggggggg text"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>

关于android - TextView 宽度超过 LinearLayout 宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31856440/

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