2010-11-09 4 views
0

Ceci est mon fichier main.xml que j'utilise, et les deux images dans myImage_Main et myImage_Main2 sont foirées.
Existe-t-il un moyen de définir l'androïde: layout_width à la taille de l'image bitmap? ou est-ce que je l'ai juste réglé à 500px qui est à peu près la taille de l'écran?Android Problème avec les scrollviews et le redimensionnement de l'image

exemple ce que je veux:

 
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

Combien d'espace reste pour votre ScrollView? Et avez-vous essayé ceci: http://developer.android.com/reference/android/widget/ImageView.html#attr_android:scaleType? – xandy

Répondre

1

Il suffit d'utiliser wrap_content pour tous ceux-ci. Lorsque la mise en page est agrandie dans setContentView(R.layout.your_layout), elle détermine la quantité exacte de largeur nécessaire pour afficher toutes ses vues enfants. Cependant, vous devrez définir scaleType="none". Je ne suis pas tout à fait sûr de ce que vous essayez d'accomplir, donc si je ne comprends pas bien la question, veuillez clarifier.

Questions connexes