2012-12-26 182 views
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()); 
     } 
    }); 
} 

回答

2

在您ImageView你的寬度和高度設置爲

android:layout_width="fill_parent" 
android:layout_height="fill_parent" 

圖像視圖將填充父項,getWidth()getHeight()將爲您提供這些值。

你需要換你ImageView不知何故,使其正常顯示,但給喜歡

android:layout_width="wrap_content" 
android:layout_height="wrap_content" 

ImageView寬度/高度值也有上ImageView bitmap scale dimensions似乎過於解決這一問題的答案。

從答案由https://stackoverflow.com/users/321697/kcoppock

ImageView iv = (ImageView)findViewById(R.id.imageview); 
int scaledHeight, scaledWidth; 
iv.getViewTreeObserver().addOnPreDrawListener(
    new ViewTreeObserver.OnPreDrawListener() { 
    @Override 
    public boolean onPreDraw() { 
     Rect rect = iv.getDrawable().getBounds(); 
     scaledHeight = rect.height(); 
     scaledWidth = rect.width(); 
     iv.getViewTreeObserver().removeOnPreDrawListener(this); 
     return true; 
    } 
}); 
+1

謝謝它的作品,我不知道爲什麼,但我不得不否則大小爲W採用ViewTreeObserver:1個小時:1。但是對於「wrap_content」,我的圖像以「醜陋的方式」顯示,是否有可能使用fill_parent參數獲取大小? – GermainGum

+0

我已經添加了一些可能對您有幫助的代碼。看到修改後的答案。 –

相關問題