没有常规按钮形状的图像按钮:Android

时间:2012-04-19 11:26:35

标签: android uibutton imagebutton

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

4 个答案:

答案 0 :(得分:3)

检查android developers referenceTutorial Custom Button。这正是你所需要的!

答案 1 :(得分:1)

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

答案 2 :(得分:0)

使用ImageButton,将background属性设置为某种颜色,即#000和无填充

答案 3 :(得分:0)

<Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button" android:background="@drawable/ic_launcher"/>