gpt4 book ai didi

android - 如何在 Android 中为不同的屏幕尺寸宽度设置 textview 宽度?

转载 作者:行者123 更新时间:2023-11-29 20:53:39 24 4
gpt4 key购买 nike

<TextView
android:id="@+id/text"
android:layout_width="@dimen/width_chat"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/left"
android:fontFamily="calibri"
android:padding="8dp"
android:textColor="#636363"
android:background="@anim/mercy"
android:textSize="17dp" />

这是我的 TextView 。我有 4 英寸和 6 英寸的屏幕。我想设置宽度,以便根据它自动调整。我在 valuesvalues-sw600dp 中创建了 2 个维度文件。在这两个文件夹中,我分别设置了尺寸宽度 250dp 和 150,但无法根据不同的文件设置尺寸。请帮助我并建议我哪里做错了。

最佳答案

为每个 child 使用水平 LinearLayoutandroid:layout_weight 属性。

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

<View
android:id="@+id/left"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1" >
</View>

<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.5"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>

如果您想使用尺寸文件(例如设置 text_size),请在相应文件夹的 dimens.xml 中输入值。

res/values/dimens.xml
res/values-small/dimens.xml
res/values-normal/dimens.xml
res/values-large/dimens.xml
res/values-xlarge/dimens.xml

关于android - 如何在 Android 中为不同的屏幕尺寸宽度设置 textview 宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28380884/

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