gpt4 book ai didi

android - Android中 ImageView 的边框?

转载 作者:IT老高 更新时间:2023-10-28 12:50:04 24 4
gpt4 key购买 nike

如何在 Android 中为 ImageView 设置边框并更改其颜色?

最佳答案

我将以下 xml 设置为 Image View 的背景为 Drawable。它有效。

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<stroke android:width="1dp" android:color="#000000" />
<padding android:left="1dp" android:top="1dp" android:right="1dp"
android:bottom="1dp" />
</shape>

然后将 android:background="@drawable/yourXmlFileName" 添加到您的 ImageView

关于android - Android中 ImageView 的边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3263611/

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