I have the following main.xml file with a LinearLayout

<?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"
    android:weightSum="1" android:id="@+id/llid">
    <TextView android:text="Client profile"
    android:id="@+id/ProfileName"
    android:layout_width="fill_parent"
    android:textStyle="bold"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal">
    </TextView>    
    <TextView android:text="Specs"
    android:id="@+id/Specs"
    android:layout_width="fill_parent"
    android:textStyle="bold"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal">
    </TextView>
</LinearLayout>

I add an image to the LinearLayout via code at runtime like so

            ImageView image = new ImageView(this);
            image.setImageBitmap(bmp);
            LinearLayout ll = (LinearLayout) findViewById(R.id.llid);
            ll.addView(image);  

However, I want to add the ImageView between the 2 TextViews in my LinearLayout. I can't seem to find a way in the android docs to add a view before another view, or after. How can I do this?

NB I call

setContentView(R.layout.main);

Before I add the ImageView to the LinearLayout.

link|improve this question

Why do you want to do so? Just declare imageview in layout and set source to it instead of inserting imageview in code. – Mighter Aug 2 '11 at 19:33
This won't work. At runtime I am loading an image dynamically and want to display it in my layout. – Joeblackdev Aug 2 '11 at 19:34
You can set source for ImageView dynamically. I really don't see the reason to do in the way you describe. – Mighter Aug 2 '11 at 19:45
feedback

4 Answers

up vote 4 down vote accepted

When adding a View to a ViewGroup, you can specify an index which sets the position of the view in the parent.

You have two views and so (counting from zero) you would want to add at the 1st position; just call ll.addView(image, 1); to have it placed in between the two TextViews.

link|improve this answer
This is exactly what I need. Thanks! – Joeblackdev Aug 2 '11 at 20:01
feedback

The docs state you can use the index to insert it where you want. I see you are using the signature of the view only, did you try the signature with the index parameter?

public void addView(View child, int index) 
link|improve this answer
feedback
setContentView(R.layout.main);

ImageView img = (ImageView) findViewById(R.id.imagefield);
img.setImageResource(your_image_here);

and in the xml

<?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"
android:weightSum="1" android:id="@+id/llid">
<TextView android:text="Client profile"
android:id="@+id/ProfileName"
android:layout_width="fill_parent"
android:textStyle="bold"
android:layout_height="wrap_content"
android:gravity="center_horizontal">
</TextView>    
<ImageView android:id="@+id/imagefield" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content">
</ImageView> 
<TextView android:text="Specs"
android:id="@+id/Specs"
android:layout_width="fill_parent"
android:textStyle="bold"
android:layout_height="wrap_content"
android:gravity="center_horizontal">
</TextView>

link|improve this answer
feedback

Add an ImageView into the xml, and if its not being used, make it invisible (image.setVisibility(View.INVISIBLE)). It may not show anything anyway when no image is set.

link|improve this answer
I think you may be over complicating something simple :) – Jack Aug 2 '11 at 19:51
I think you want to use View.GONE unless you want to leave an empty space. You can insert using the index as well – Idistic Aug 2 '11 at 20:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.