gpt4 book ai didi

java - android gmail 应用程序,如 ListView ,图标中有 4 个图标

转载 作者:行者123 更新时间:2023-11-30 02:16:13 25 4
gpt4 key购买 nike

我如何使用 4 个不同的图标生成图标,例如 gmail 应用程序以编程方式具有带有文本的图标,我花了几个小时用 TextDrawable 生成它但无法修改它以用于图像

这是我想要实现的截图

数字 1,2 等将替换为其他小图像。任何提示或帮助将不胜感激谢谢。

最佳答案

使用生成此图像的布局构造:

enter image description here

 <LinearLayout
android:layout_width="100dp"
android:layout_height="100dp"
android:weightSum="2"
android:orientation="vertical"
android:background="#ffacacac"
android:padding="2dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="1"
android:weightSum="2">

<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_margin="2dp"
android:background="#ffff2983"
android:src="@android:drawable/presence_busy" />

<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_margin="2dp"
android:background="#ffa1ff55"
android:src="@android:drawable/ic_menu_set_as" />

</LinearLayout>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:layout_weight="1"
android:weightSum="2">

<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_margin="2dp"
android:background="#ff5bffec"
android:src="@android:drawable/ic_menu_send" />

<ImageView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:layout_margin="2dp"
android:background="#ff4d4eff"
android:src="@android:drawable/ic_menu_month" />

</LinearLayout>

</LinearLayout>

关于java - android gmail 应用程序,如 ListView ,图标中有 4 个图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29311146/

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