gpt4 book ai didi

android - 圆角android图像按钮

转载 作者:IT老高 更新时间:2023-10-28 22:15:53 26 4
gpt4 key购买 nike

我正在尝试在 android ImageButton 上圆角,代码如下所示;

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageButton"
android:layout_marginTop="57dp"
android:src="@drawable/friends"
android:padding="1dp"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@+id/imageButton2"
android:layout_marginRight="62dp" />

</RelativeLayout>
</LinearLayout>

基本上我们的输出是一个 ImageButton,但它有方角,我们正在尝试圆角。

谢谢

最佳答案

使用 Shape在android中制作圆角

创建一个名为 roundcorner.xml

的 xml 文件
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#33DDFF" />
<corners android:radius="4dp" />
</shape>

在你的 ImageButton 添加这个属性 android:background="@drawable/roundcorner"

<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageButton"
android:layout_marginTop="57dp"
android:src="@drawable/friends"
android:background="@drawable/roundcorner"
android:padding="1dp"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@+id/imageButton2"
android:layout_marginRight="62dp" />

关于android - 圆角android图像按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21633637/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com