1

我有一张我想用作按钮的图像。但我只希望图像作为按钮可见,具有图像的形状(我不想要图像周围的常规按钮,也不想要常规按钮形状)。我怎样才能做到这一点?我可以在不设计自定义按钮的情况下实现这一点吗?

4

4 回答 4

3

检查android 开发人员参考教程自定义按钮。这正是您所需要的!

于 2012-04-19T11:29:48.977 回答
1

使用 button.setBackgroundDrawable(或 Resource 等)设置图像

于 2012-04-19T11:28:05.147 回答
0

使用 ImageButton 并将背景属性设置为某种颜色,即 #000 并且没有填充

于 2012-04-19T11:34:11.733 回答
0
<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" android:background="@drawable/ic_launcher"/>
于 2012-04-19T11:36:44.010 回答