I am trying to set a 9-patch image as the background for one of my activities but it is stretching unescessarily making everything get all wierd. I used draw9patch to create it and added one pixel to the bottom left and one pixel to the top right. I then save it into my drawables directory as intro_bg.9.png. I want to stretch the very bottom and stretch the far right side but only if it has too. If it doesn't then I would like it to stay in tact.

When I set it as the background of the parent layout however it stretches it both horizontally and vertically and it doesn't even show my buttons when I run it on my droid.

I've done the Google searches but there is no good info on how to get something like this working. What am I missing?

I have also tried some other configurations including using the padding sides(right and bottom) but that gave the same results.

Thanks

Code to set as background:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/intro_bg"
>

Looks like:
alt text

Should look like:
alt text

link|improve this question

2  
you should post 9patch image and maybe a screenshot, makes it easier to understand. and your relevant part of xml layout code. – Mathias Lin Aug 18 '10 at 6:41
Screenshot comming soon – Mike Aug 18 '10 at 6:46
What are dimensions of the image? I looks like it is just too big. – Konstantin Burov Aug 18 '10 at 7:05
Origionaly .png that I made into the 9-patch is 475x845. Is there a recommended size for this type of thing? – Mike Aug 18 '10 at 7:12
See my answer :) – Konstantin Burov Aug 18 '10 at 7:15
show 1 more comment
feedback

1 Answer

up vote 1 down vote accepted

Your image is just too big to fit the layout. If you want it to be contracted you need to paint a line on the top and left borders -- the line marks region which will be contracted or stretched. I guess right now you have just dots on the borders.

Second option is to set the image as activity background, then it will be fitted in the screen. To do this add styles.xml to res/values folder:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="ExampleTheme" parent="android:Theme">
    <item name="android:windowBackground">@drawable/intro_bg</item>
</style>
</resources>

Then apply the theme to your activity at the manifest. The intro_bg drawable even doesn't need to be a 9-patch.

link|improve this answer
making it smaller didn't work. How would I go about setting it as the background to my activity? – Mike Aug 18 '10 at 7:20
I didn't mention to make it smaller. Just draw longer lines on the top and left borders of nine-patch. – Konstantin Burov Aug 18 '10 at 7:28
See update on setting a background to activity. – Konstantin Burov Aug 18 '10 at 7:32
You were right about drawing the lines bigger. Thanks for the help. – Mike Aug 18 '10 at 7:51
feedback

Your Answer

 
or
required, but never shown

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