gpt4 book ai didi

android文本未显示在按钮中

转载 作者:行者123 更新时间:2023-12-04 00:08:43 24 4
gpt4 key购买 nike

当我开始在 android 上工作时,这种情况经常发生在我身上。按钮元素中的文本未完全显示。有什么问题?我尝试了文本方向、对齐方式、重力但没有任何效果。

enter image description here

背后的代码:

<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView1"
android:layout_centerHorizontal="true"
android:layout_marginTop="40dp"
android:text="@string/latestButtonString"
android:background="@drawable/roundbutton" />

请提供帮助,非常感谢。

更新:这是roundbutton.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<!-- you can use any color you want I used here gray color-->
<solid android:color="#ABABAB"/>
<corners
android:bottomRightRadius="10dp"
android:bottomLeftRadius="10dp"
android:topLeftRadius="10dp"
android:topRightRadius="10dp"/>
</shape>

最佳答案

我遇到了这个问题,我通过将按钮的 xml 从 using tools: 更改为 android: for text 属性来解决它。下面的示例(最后一行是更改的行):

 <Button
android:id="@+id/btn_settings"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#F6F6F6"
tools:text="App Settings" />

变成……

 <Button
android:id="@+id/btn_settings"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textColor="#F6F6F6"
android:text="App Settings" />

关于android文本未显示在按钮中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20279376/

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