不能绕过按钮的角落

时间:2017-12-13 14:44:47

标签: android imagebutton

我在下面写了代码,但我的ImageButton仍有尖角。也许我不知道什么,如果你知道的话,请告诉我。

我的观点

<ImageButton
    android:id="@+id/bottle"
    android:src="@drawable/bottle"
    android:background="@drawable/rouncorners"
    android:layout_width="100dp"
    android:layout_height="100dp"/>

可绘制的xml文件:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="10dp"/>
</shape>

3 个答案:

答案 0 :(得分:0)

好吧,我在我的工作室上测试了我的启动器图标作为里面的图像,我得到了所需的结果。这是整个xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:app="http://schemas.android.com/apk/res-auto"
 android:layout_width="match_parent"
 android:layout_height="match_parent">

<ImageButton
    android:id="@+id/bottle"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:contentDescription="@null"
    app:srcCompat="@mipmap/ic_launcher"
    android:background="@drawable/rouncorners"/>

</android.support.constraint.ConstraintLayout>

要放在可绘制文件中的xml是:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <stroke android:width="3dip" android:color="@color/profile_cover" />
    <corners android:radius="10dp" />
 </shape>

结果如下:

Resultant image

这是你正在寻找的吗?它有圆角和里面的图像。

答案 1 :(得分:0)

添加此代码并清除项目并运行,希望它显示。

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke
    android:width="2dp"
    android:color="@color/your_color" />
<solid android:color="@color/your_color" /></shape> 

答案 2 :(得分:0)

我有一个类似的问题(与按钮有关),我创建了一个带有边角,笔触,实心等的可绘制形状,但是尽管我可以看到预览中正确显示的按钮,但在实际应用。我还没有弄清楚为什么,但是解决方法是像这样通过编程方式将drawable设置为按钮 的背景  someButton.setBackgroundResource(R.drawable.button_rounded_corners);