图像视图裁剪不起作用
Posted
技术标签:
【中文标题】图像视图裁剪不起作用【英文标题】:imageview-cropping not working 【发布时间】:2017-11-22 16:49:35 【问题描述】:当我尝试“centerCrop”或“center”时,我的图像视图不会改变。要解决什么问题才能裁剪图像?
<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_
android:layout_
tools:context="xx.myapplication.MainActivity">
<ImageView
android:layout_
android:layout_
android:background="@drawable/party"
android:scaleType="centerCrop" />
<TextView
android:layout_
android:layout_
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_
android:layout_
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>
我在代码中看到的图像:
【问题讨论】:
始终通过前缀“!”来内联图像在图片链接之前,以便其他人无需打开链接即可查看。 @EvilTak 你是说如果我放“!”在图片链接之前,它会直接在此页面上显示图片,而不是要求查看者点击它? 是的,我是。看看我的edit。 【参考方案1】:使用src
而不是background
android:src="@drawable/party"
【讨论】:
以上是关于图像视图裁剪不起作用的主要内容,如果未能解决你的问题,请参考以下文章
使用 imagemagick linux 脚本裁剪图像不起作用