Difference between src and background for image view(图像视图的 src 和背景之间的区别)
问题描述
我有两个图像视图.我为一个图像视图设置了背景,我为一个图像视图设置了 src .但是两者看起来都不一样,而且当我按下带有背景设置的图像视图时,它也没有显示选择.谁能解释为什么会这样?
I have two imageviews. I have set background for one image view and I have set src for one image view . But both are looking differnt and also when i press the imageview with background set it is not showing the selection. can anyone explain why this happens ?
<ImageButton android:layout_width="250dp"
android:layout_height="100dp"
android:background="@drawable/perm_group_camera"/>
<ImageButton android:layout_width="250dp"
android:layout_height="100dp"
android:adjustViewBounds="true"
android:src="QGRyYXdhYmxlL3Blcm1fZ3JvdXBfY2FsZW5kYXI="/>
推荐答案
但两者看起来不同
But both are looking differnt
首先,drawables是不同的.
First, the drawables are different.
其次,背景总是缩放到视图的大小.
Second, the background always scales to the size of the view.
当我按下带有背景设置的图像视图时,它不显示选择.谁能解释为什么会发生这种情况
when i press the imageview with background set it is not showing the selection. can anyone explain why this happens
选择效果是因为默认情况下,背景是一个StateListDrawable
在 state_pressed
中具有不同的外观.您的自定义背景在所有州看起来都一样.您可以使用 在 xml 中创建 StateListDrawables
选择器
.
The selection effect is because by default, the background is a StateListDrawable
with a different appearance in state_pressed
. Your custom background looks the same in all states. You can create StateListDrawables
in xml with a selector
.
这篇关于图像视图的 src 和背景之间的区别的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:图像视图的 src 和背景之间的区别
- android 4中的android RadioButton问题 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01