如何在android中创建循环imageButton?

时间:2015-01-21 12:31:06

标签: android android-layout

伙计们我在我的布局文件中创建了一个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" />

3 个答案:

答案 0 :(得分:28)

添加android:background="@null"

答案 1 :(得分:5)

尝试添加此xml ..

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" 
android:shape="rectangle">
<solid android:color="#eeffffff" />
<corners android:bottomRightRadius="8dip"
    android:bottomLeftRadius="8dip"  
    android:topRightRadius="8dip"
    android:topLeftRadius="8dip"/>
</shape>

答案 2 :(得分:5)

使用形状如下:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="oval" >
    <gradient 
        android:startColor="#FFFF0000" 
        android:endColor="#80FF00FF"
        android:angle="270" />
</shape>