当我尝试使用" centerCrop"时,我的imageview不会改变。或"中心。"要解决的问题是什么,以便我可以裁剪图像?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="xx.myapplication.MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/party"
android:scaleType="centerCrop" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="From. h"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_margin="8dp"
android:padding="8dp"
android:textSize="20sp"
android:textColor="#FFEBEE"
android:fontFamily="sans-serif-medium" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Happy Wednesday!!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_margin="8dp"
android:textSize="36sp"
android:textColor="@android:color/white"/>
</RelativeLayout>
我在代码中看到的图片:
答案 0 :(得分:1)
使用src
代替background
android:src="@drawable/party"
答案 1 :(得分:-1)
就无法真正帮助。但我认为你可以尝试做的是:
通过使兑现失效来重启android工作室,当程序有趣时(不总是),总是这样做
清除应用程序或从测试设备或模拟器中卸载它,有时可能是因为即时构建。