gpt4 book ai didi

java - Android ImageView 全屏

转载 作者:行者123 更新时间:2023-12-02 02:40:05 25 4
gpt4 key购买 nike

我试图在 ImageView 上画一个圆圈,到目前为止我可以使用 ImageView 的位图和 setOnTouchListener 来完成它,但它总是把它放在错误的位置,所以我需要的是:让 ImageView 占据所有屏幕,这样point(0,0) 与设备屏幕的 point(0,0) 匹配。

what I got as result for now

这是我的 Activity 布局:

<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="wrap_content"
android:layout_height="wrap_content"
tools:context="com.example.ghoster.second.MainActivity" >

<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:srcCompat="@drawable/test4"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="11dp"
android:layout_marginEnd="11dp" />
</RelativeLayout>

最佳答案

用这个

android:scaletype="FIT_XY"

您还可以使用最新的API

android:scaletype="fitXY"

在 ImageView 中

关于java - Android ImageView 全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45636465/

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