gpt4 book ai didi

android - 包含两行文本时 TextView 变小

转载 作者:太空狗 更新时间:2023-10-29 13:38:47 25 4
gpt4 key购买 nike

我有一个简单的水平 LinearLayout,里面有四个相同样式的 TextView。当 TextView 中的文本需要两行时,TextView 变小:

enter image description here

我不明白为什么。有人可以帮忙吗?

谢谢

布局

<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp">

<TextView style="@style/compte_ba_cell"
android:background="@color/grey_header"
android:textStyle="bold" android:text="@string/montant" />

<TextView style="@style/compte_ba_cell"
android:background="@color/grey_header"
android:textStyle="bold" android:text="@string/origine" />

<TextView style="@style/compte_ba_cell"
android:background="@color/grey_header"
android:textStyle="bold" android:text="@string/echeance" />

<TextView style="@style/compte_ba_cell_last"
android:background="@color/grey_header"
android:textStyle="bold" android:text="@string/statut" />

</LinearLayout>

风格

<style name="compte_ba_cell">
<item name="android:layout_width">71.5dp</item>
<item name="android:layout_height">50dp</item>
<item name="android:textColor">#000000</item>
<item name="android:background">#FFFFFF</item>
<item name="android:layout_marginRight">2dp</item>
<item name="android:textSize">12sp</item>
<item name="android:typeface">serif</item>
<item name="android:gravity">center</item>
</style>
<style name="compte_ba_cell_last" parent="@style/compte_ba_cell">
<item name="android:layout_marginRight">0dp</item>
</style>

最佳答案

如果您将第三个 TextView 更改为包含 android:layout_height="fill_parent",这将解决您的问题。我想问题出在与“wrap_content”相关的东西上,但我不确定这是否是 layout_height 的默认值。这也没有意义,为什么在其他情况下,它不会环绕内容并且也更小。

   <TextView style="@style/compte_ba_cell"
android:background="@color/grey_header"
android:layout_height="fill_parent"
android:textStyle="bold" android:text="@string/echeance" />

关于android - 包含两行文本时 TextView 变小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8171922/

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