gpt4 book ai didi

Android UI - 带边框的圆 table

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

任何人都可以帮助我如何为 android 实现这种风格吗?

enter image description here

我没有在 android 中做过太多用户界面设计。我可以使用 TableLayout 本身吗?

最佳答案

将此 xml 文件保存在可绘制文件夹中,并在表格布局的背景中使用它:

<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners
android:topLeftRadius="6dp"
android:topRightRadius="6dp"
android:bottomLeftRadius="6dp"
android:bottomRightRadius="6dp" />

<solid
android:color="#ffffff"/>

<padding
android:left="1dp"
android:right="1dp"
android:top="1dp"
android:bottom="1dp"/>

<stroke
android:width="1dp"
android:color="#c7c7c7" />

</shape>

您可以根据需要更改边框颜色和纯色。

注意:以上代码的详细说明请引用link .

关于Android UI - 带边框的圆 table ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8832499/

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