imageview-cropping无法正常工作

时间:2017-11-22 16:49:36

标签: android imageview crop

当我尝试使用" 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>

我在代码中看到的图片:

Image that I see with my code now is here<<

2 个答案:

答案 0 :(得分:1)

使用src代替background

android:src="@drawable/party"

答案 1 :(得分:-1)

如果没有看到你在java文件中对可怜的imageview做了什么,

就无法真正帮助。但我认为你可以尝试做的是:

  1. 通过使兑现失效来重启android工作室,当程序有趣时(不总是),总是这样做

  2. 清除应用程序或从测试设备或模拟器中卸载它,有时可能是因为即时构建。