Thursday, March 29, 2012

[android-developers] Need help with proper arrangement of UI components

Hi, I have attached the view that I have made for an application. I am struggling to remove the grey background and arranging the images properly. Cant figure out why the grey background is showing.

The layout xml is as shown below. I add imageViews with images to the linear layout. imageView has width and height set to wrap_content, and its background is grey:

<ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/spinner" >

        <LinearLayout 
            android:id="@+id/imagesHolder"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal"
            android:baselineAligned="false"
            >
        <LinearLayout 
           android:id="@+id/imagesHolder1"
           android:layout_width="0dp"
           android:layout_height="wrap_content"
           android:layout_weight="10"
           android:orientation="vertical">
        </LinearLayout>    
        <LinearLayout 
           android:id="@+id/imagesHolder2"
           android:layout_width="0dp"
           android:layout_height="wrap_content"
           android:layout_weight="10"
           android:orientation="vertical">
        </LinearLayout>    
        <LinearLayout 
           android:id="@+id/imagesHolder3"
           android:layout_width="0dp"
           android:layout_height="wrap_content"
           android:layout_weight="10"
           android:orientation="vertical">
        </LinearLayout>    
            
        </LinearLayout>
    </ScrollView>

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

No comments:

Post a Comment