gpt4 book ai didi

安卓布局 : How to implement a UI similar to deck of cards?

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:49:17 26 4
gpt4 key购买 nike

我需要实现类似于谷歌浏览器的标签堆栈的布局,如下所示。

是否有可用的库?

enter image description here

最佳答案

您需要为卡片的各个方面创建一组自定义可绘制对象,并在布局中使用它们。为此,您可以使用表格布局。

例如,要放置带角的背景,您可以创建一个可绘制对象,如下所示:

添加新的drwabe资源如下:

<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="rectangle" >
<corners android:radius="5dp"/>
<stroke android:width="1dp" android:color="choose the color which you want"/>
<padding android:top="10dp" android:left="10dp" android:bottom="10dp"
android:right="10dp"/>
</shape>

创建自定义样式并使用上面的可绘制对象作为背景:

<style name="ContactTextView">
<item name="android:background">@drawable/drawableName</item>
// add other items
</style>

将样式应用于布局中的每个项目

关于安卓布局 : How to implement a UI similar to deck of cards?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25810586/

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