i need to include a header graphic in all of my activities/views. the file with the header is called header.xml:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent" 
  android:layout_height="wrap_content"
  android:background="#0000FF" 
  android:padding="0dip">

  <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/header"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_margin="0dip"
    android:layout_marginTop="0dip"
    android:layout_marginBottom="0dip"
    android:padding="0dip"
    android:paddingTop="0dip"
    android:paddingBottom="0dip"
    android:layout_gravity="fill"
    android:background="#00FF00"
    />
</FrameLayout>

note the android:background="#00FF00" (green), it's just visualisation purposes.

i include them into my views like this:

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

  <include layout="@layout/header" />
  (...)

so, when i actually try it out, the result looks like the left image, instead of what it should look like (right):

note the green border

(1) this - the orange - part is the image/ImageView in question
(2) the unloved green border. note: normally, the green area would be transparent - it's only green because i set the background.

note the green border around the image at the top; it's part of the ImageView and i just can't figure out why it is there or how i can get rid of it. it set all paddings and margins to 0 (but the result is the same when i omit them) . the image is a 480x64px jpeg* and i put it in res/drawable (not in one of the drawable-Xdpi though).

(* jpeg, because it seems i stumbled upon the old png gamma problem - at first i worked around the problem by making the green border the same orange as the picture, and the colors didn't match.)

i tried it on my htc desire/2.2/Build 2.33.163.1 and on the emulator. also i described the problem to someone in #android-dev; she could reproduce the problem but had no explanation either. build target is 1.6.

update @tehgoose: this code yields the exact same top+bottom padded result.

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

  <!-- <include layout="@layout/header" />  -->

  <ImageView
    android:src="@drawable/header"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#00FF00"
    android:layout_weight="0"
    />

  <LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="8dip"
    android:layout_weight="1">

    (... rest of the elements)

  </LinearLayout>
</LinearLayout>
link|improve this question

57% accept rate
feedback

4 Answers

up vote 14 down vote accepted

finally!

<ImageView
  (...)
  android:adjustViewBounds="true" />

the adjustViewbounds attribute did the trick:

Set this to true if you want the ImageView to adjust its bounds to preserve the aspect ratio of its drawable.

i stumbled upon it here. thanks for your help!

link|improve this answer
thanks, been looking for this – user401183 Sep 12 '11 at 16:32
feedback

May be you can give specific height to imageView say 50dp or 40dp and adjust image to make green border dissappear.

Eg: android:layout_height="40dp"

link|improve this answer
setting the layout_width="480px" and layout_height="64px" yields the result i want to, but pixels are not very practical. i honestly don't understand how that translates to dp. – stefs Apr 29 '11 at 11:25
You should use dp just as you would pixels. That's all they are; display independent pixels. but it works. – Udaykiran Apr 29 '11 at 11:37
dp/dip means Density Independent Pixels; as far as i understand, it covers different densities, but (of course) not different screen sizes. all i want is the image to scale to 100% screen width and leave the height so proportions are kept. – stefs Apr 29 '11 at 11:50
feedback

You need to provide shape around imageview to give a better look.

Here what i have used:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
<!--<gradient android:startColor="#FFFFFF" android:endColor="#969696"

    android:angle="270">
-->
<gradient android:startColor="#FFFFFF" android:endColor="#FFFFFF"

    android:angle="270">
</gradient>
    <stroke android:width="2dp" android:color="@color/graycolor" />
<corners android:radius="2dp" />
<padding android:left="5dp" android:top="5dp" android:right="5dp"
    android:bottom="5dp" />

link|improve this answer
2  
whoa! i already worked with shapes (for tab backgrounds), but honestly, i don't understand how i should apply that here. – stefs Apr 29 '11 at 11:55
@Schnalle: make two shapes.xml file, and one selector.xml. apply image background as selector.xml file. In selector file provide two states for focused/selected and normal state. – Zoombie May 2 '11 at 7:50
feedback
android:layout_height="wrap_content"

You need to change it to "fill_parent"

You also might need to scale your image so it will be the right ratio to fill the framelayout it is in.

I don't understand why you need the frame layout there at all. Without it, your image would just fill the screen anyways.

EDIT: yes, sorry, the xml is the height for the imageview.

link|improve this answer
1  
The only thing to add is that he need to set layout height of ImageView, it's not so evident in your answer :) – ernazm Apr 29 '11 at 10:00
Oh yeah. Thanks for noticing that. I edited my answer. – NotACleverMan Apr 29 '11 at 10:16
i tried it without a surrounding layout too, doesn't change anything. also, the current image is just a placeholder - there will be additional elements soon (justifying the surrounding layout). i don't want the image to match the screen, i want it just there, at the top. – stefs Apr 29 '11 at 10:57
Double check to see if your image has blank space on the top and bottom. If not then try out scaling the imageview object using android:scaleType="". There should be one to suit what you're looking for. – NotACleverMan Apr 29 '11 at 12:58
feedback

Your Answer

 
or
required, but never shown

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