gpt4 book ai didi

android - 将布局包裹在边框中

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

我正在尝试创建一个围绕多个文本框的边框。我已经能够通过在 XML 中定义一个形状然后使用该形状作为我的背景来做到这一点。这是定义的形状。

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke android:width="1dp" android:color="#787878" />
<padding android:left="7dp" android:top="7dp"
android:right="7dp" android:bottom="7dp" />
<corners android:radius="4dp" />
</shape>

下面是我的使用方法。目前只是在 TextView 上。

<TextView 
android:background="@drawable/my_border"
android:id="@+id/item_text"
android:layout_margin="5dip"
android:layout_height="wrap_content"
android:textSize="16sp"
android:layout_centerHorizontal="true"
android:text="@string/item_text"
android:textColor="#787878"
android:layout_width="wrap_content"
android:textStyle="bold"/>

这实际上按预期绘制了边框,但是板内的颜色即 TextView 的背景是黑色的。我不知道这是为什么。感谢任何帮助我朝着正确方向前进的猜测。

谢谢

最佳答案

尝试添加 <solid android:color="#ffffff" />给你的shape定义。

关于android - 将布局包裹在边框中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5820597/

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