gpt4 book ai didi

Android向小部件添加标题

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

我想在我的应用程序的小部件中添加一个看起来像应用程序图标下方默认文本的标题。有什么通用的方法可以实现这一目标吗?

最佳答案

<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="72dp"
android:layout_height="wrap_content"
android:text="@string/label"
android:drawableTop="@drawable/icon"
/>

像这样的东西应该可以工作。使用 drawableTop/Left/Right 属性将允许您将图像放置在标签上方。可以找到完整的属性列表 here .

您可以尝试的另一件事是:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="72dp"
android:layout_height="wrap_content"
>
<TextView
android:text="@string/label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/background_shape"
android:id="@+id/text"
/>
<ImageView
android:src="@drawable/icon"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:layout_above="@id/text"
/>
</RelativeLayout>

关于Android向小部件添加标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3933804/

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