2010-11-09 69 views
0

這是我使用的main.xml,myImage_Main和myImage_Main2中的兩個圖像混亂了。
有沒有辦法將android:layout_width設置爲位圖的大小?或者我只是將它設置爲500px,這大約是屏幕的大小?安卓與滾動視圖和圖像調整大小的問題

實例我想要什麼:

 
Scroll view ------------------------------- 
| 
|    Image 1 Full Sized on Screen 
| 
| 
|    Bottom of screen 
___________________________________________ 
|    Not yet on screen, but 
|   Scroll down to see Image 2 | 
| 
| 
| 
|_____________________________________________| 
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 


    <LinearLayout 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal" 
      android:layout_gravity="top" 
     > 
     <Button android:id="@+id/myButton_Search" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/btn_search" 
    android:layout_gravity="top" 
    /> 
    <Button android:id="@+id/myButton_Save" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="@string/btn_save" 
    android:layout_gravity="top" 
    /> 
    </LinearLayout> 

    <EditText 
    android:id="@+id/myEdittext" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="bottom" 
    /> 
<ScrollView android:id="@+id/ScrollView01" 
android:layout_width= **Right here I want to get the size of the image i use as the width** 
android:layout_height=**Right here I want to get the size of the image i use as the height** 
android:fillViewport="true" 
android:scrollY="100px" 
> 
<LinearLayout android:id="@+id/LinearLayout02" 
android:layout_width=**Right here I want to get the size of the image i use as the width** 
android:layout_height=**Right here I want to get the size of the image i use as the height** 
android:orientation="vertical"> 
    <ImageView android:id="@+id/myImage_Main" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:scaleType="fitCenter" 
    /> 
    <ImageView android:id="@+id/myImage_Main2" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:scaleType="fitCenter" 
    /> 
    </LinearLayout> 
    </ScrollView> 
</LinearLayout> 
+0

爲您的ScrollView剩下多少空間?而且,你有沒有試過這個:http://developer.android.com/reference/android/widget/ImageView.html#attr_android:scaleType? – xandy 2010-11-09 00:58:19

回答

1

只需使用wrap_content所有這些的。當佈局在setContentView(R.layout.your_layout)中膨脹時,它將確定顯示其所有子視圖所需的寬度的確切數量。但是,您需要設置scaleType="none"。我不完全確定你想要完成什麼,所以如果我誤解了這個問題,請澄清一下。