1
我想要獲取顯示在屏幕上的圖像的大小,而不是圖像的原始大小。原始圖像大小VS顯示圖像大小
我已經對它做了一些研究,並且在兩年前未解決的post上發現了同樣的問題,所以我想也許現在有一種新的方法可以做到這一點。
我想這3個解決方案:
//Get the same result for all my images (whereas images have difference sizes)
imageView.getWidth() + imageView.getHeight()
//Get the original size of the images
imageView.getDrawable().getIntrinsicWidth() + imageView.getDrawable().getIntrinsicHeight()
bitMap.getWidth() + bitMap.getHeight()
我的XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="1dip" >
<ImageView
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:contentDescription="@string/descr_image"
android:layout_alignParentBottom="true" />
<ProgressBar
android:id="@+id/loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone" />
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
更新1
ViewTreeObserver viewTreeObserver = imageView.getViewTreeObserver();
if (viewTreeObserver.isAlive()) {
viewTreeObserver.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@SuppressWarnings("deprecation")
public void onGlobalLayout() {
imageView.getViewTreeObserver().removeGlobalOnLayoutListener(this)
System.out.println("TEST :" + imageView.getWidth() + " " + imageView.getHeight());
}
});
}
謝謝它的作品,我不知道爲什麼,但我不得不否則大小爲W採用ViewTreeObserver:1個小時:1。但是對於「wrap_content」,我的圖像以「醜陋的方式」顯示,是否有可能使用fill_parent參數獲取大小? – GermainGum
我已經添加了一些可能對您有幫助的代碼。看到修改後的答案。 –