2012-12-18 54 views
0

如果點擊了 ,我使用按鈕創建了一個應用程序,該按鈕將重定向到此佈局。但問題是,我無法放大圖像。如何讓我的圖像在XML中能夠縮放?

<?xml version="1.0" encoding="utf-8"?> <LinearLayout 
<Linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:orientation="vertical" > 

    <ImageView 
    android:src="@drawable/keutamaandua" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" /></LinearLayout> 
+0

「縮放圖像」是什麼意思?你只需要在你的佈局中設置圖像大小?或者您是否需要基於用戶手勢進行動態縮放? – fiddler

+0

好的這裏是情況,我的圖像上有一個小文本,所以我想爲希望清晰查看圖像中文本的用戶提供一個選項。例如,用戶可以放大和縮小圖像,或者如果你有任何建議? –

回答

0

它沒有多大意義,有一個wrap_content父母與孩子match_parent因爲你真的不給任何約束。

你應該使用match_parent根佈局:

<?xml version="1.0" encoding="utf-8"?> <LinearLayout 
<Linearlayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" >