如何在android中创建一个循环imageButton?

前端之家收集整理的这篇文章主要介绍了如何在android中创建一个循环imageButton?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Custom circle button3
我在我的布局文件中创建了一个imageButton,并设置了一个圆形png图像作为它的背景.但是当我运行我的应用程序时,它显示一个方形按钮,我给定的图像放在它的中间.
<ImageButton
    android:id="@+id/imageButton1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:src="@drawable/sliderr" />

解决方法

添加android:background =“@ null”
原文链接:https://www.f2er.com/android/313320.html

猜你在找的Android相关文章