gpt4 book ai didi

android - 在Android应用程序中居中对齐时如何找到 ImageView 的高度和宽度?

转载 作者:太空宇宙 更新时间:2023-11-04 12:39:39 25 4
gpt4 key购买 nike

这是我的代码 fragment

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/framelayouts"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
>

<ImageView
android:id="@+id/imageviews"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:src="@drawable/ic_launcher" />

</FrameLayout>

现在我可以在中心获取图像。

问题:

这里的问题是我在顶部和底部得到了一些未使用的空间,我如何找到未使用空间的高度或图像的高度或仅图像高度?

截图: enter image description here

最佳答案

private void getImageViewDimension() {
// TODO Auto-generated method stub
new Handler().postDelayed(new Runnable() {
@Override
public void run() {

int actualImgWidth = mDeviceWidth - mImgView.getX();
int actualImgHeight = mDeviceHeight - mImgView.getY();


Toast.makeText(getApplicationContext(), "actualImgWidth ,actualImgHeight:" +actualImgWidth +","+actualImgHeight ,
Toast.LENGTH_SHORT).show();

int Width = mImgView.getWidth();
int Height = mImgView.getHeight();

}
}, 10L);
}

关于android - 在Android应用程序中居中对齐时如何找到 ImageView 的高度和宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26992000/

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