gpt4 book ai didi

android - 在android中创建给定形状的 ImageView

转载 作者:行者123 更新时间:2023-11-29 00:04:41 28 4
gpt4 key购买 nike

enter image description here

我需要在 Android 中创建这个特定形状的 ImageView 。如果可以以这种形状裁剪图像,那么也很好。请帮我解决一下?

最佳答案

这将是完整的集合

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">


<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/gohan" />

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@drawable/triangle_shape" />
</FrameLayout>

triangle_shape.xml this will be inside your drawable directory

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<rotate
android:fromDegrees="-70" // you will have to tweak this a little for adjustment
android:pivotX="100%"
android:pivotY="75%"
android:toDegrees="40">
<shape android:shape="rectangle">
<stroke
android:width="10dp"
android:color="@android:color/transparent" />
<solid android:color="@android:color/holo_blue_bright" />
</shape>
</rotate>
</item>
</layer-list>

输出 gohan

关于android - 在android中创建给定形状的 ImageView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34759931/

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