Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm building an application with the following layout:

A RelativeLayout container has a ImageView child as its background and two other RelativeLayouts as the actual content of the page.

The rules of these views are set up as follows:

// Define rules and params for views in the container
ImageView backgroundImg = new ImageView(this);
RelativeLayout.LayoutParams lpImg = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
lpImg.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
backgroundImg.setImageResource(R.drawable.baggrund_smartphones_retina);
backgroundImg.setLayoutParams(lpImg);

RelativeLayout mainLayout = (RelativeLayout)findViewById(R.id.fragment_main_layout);
RelativeLayout storeLayout = (RelativeLayout)findViewById(R.id.fragment_store_layout);
RelativeLayout.LayoutParams lp1 = new RelativeLayout.LayoutParams(screenWidth, LayoutParams.MATCH_PARENT);
RelativeLayout.LayoutParams lp2 = new RelativeLayout.LayoutParams(screenWidth, LayoutParams.MATCH_PARENT);
lp1.addRule(RelativeLayout.ALIGN_PARENT_LEFT);
lp2.addRule(RelativeLayout.RIGHT_OF, R.id.fragment_main_layout);
mainLayout.setLayoutParams(lp1);
storeLayout.setLayoutParams(lp2);

root.removeAllViews();

//Add background first to ensure its in the back
snapView.addInfoPage(backgroundImg);
snapView.addInfoPage(mainLayout);

Now here is my problem. But my RelativeLayouts are aligning properly to their parent, but the ImageView is not. Instead the imageview is places like this:

enter image description here

What am I doing wrong?

share|improve this question
did you put some padding inside the layout? – blackbelt Dec 20 '12 at 9:42
Nope. Never added any padding. – litemode Dec 20 '12 at 9:45
Are you sure the image doesn't have a transparent edge :)? – Martijn Van Mierloo Dec 20 '12 at 9:47

2 Answers

up vote 0 down vote accepted

may be your image dimensions is smaller than the screen dimensions of your parentLayout .

So if you want the image to Fit all the screen use the attribut android:scaleType in your imageView Tag via xml :

<ImageView android:id="@+id/img"
blabla 
blabla 
android:scaleType="fitXY" />

or programmatically :

imgView.setScaleType(ScaleType.FIT_XY);
share|improve this answer
Brilliant! This had been bugging me for hours! – litemode Dec 20 '12 at 9:49
if it worked for you , please accept the answer , so others can get benefit from it :) – Houcine Dec 20 '12 at 9:52
I know. There's still a couple minute until I can accept your answer though :) – litemode Dec 20 '12 at 9:53
okey , take your time . and glad i could help – Houcine Dec 20 '12 at 9:54

change like this

RelativeLayout.LayoutParams lpImg = new RelativeLayout.LayoutParams(screenWidth, LayoutParams.MATCH_PARENT);

In place of

RelativeLayout.LayoutParams lpImg = new RelativeLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);

And fix imageview like this

backgroundImg.setLayoutParams(ScaleType.FIT_XY);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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