gpt4 book ai didi

java - 带有imageview和textview的Android自定义按钮?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:47:43 25 4
gpt4 key购买 nike

我想创建一个自定义按钮。理想情况下,此按钮在左侧有一个图像,在右侧有一个 TextView 。我将如何做到这一点?

最佳答案

最快的方法

创建可点击的 View ,其中包含 ImageView 和 TextView 的可绘制按钮作为背景。

<RelativeLayout
android:clickable="true"
android:background="@android:drawable/btn_default"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:src="@android:drawable/ic_input_add"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ImageView>
<TextView
android:id="@+id/text"
android:text="Sample text"
android:textAppearance="?android:attr/textAppearanceButton"
android:layout_toRightOf="@id/image"
android:layout_centerVertical="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></TextView>
</RelativeLayout>

其他方式

创建您自己的类,扩展 RelativeLayout,设置内容 View 如上,添加自定义方法来设置文本、图像等,仅此而已。使用您的自定义布局。

关于java - 带有imageview和textview的Android自定义按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5664642/

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