Trying to set the Image on a Image View where it will stretch the image based on the screen size and will also auto fit the images so it doesn't go beyond the screen.
My MainActivity:
package com.example.testting;
import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.RelativeLayout;
import android.widget.RelativeLayout.LayoutParams;
public class MainActivity extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        LinearLayout ll = (LinearLayout) findViewById(R.id.llLayout);
        for(int i=0;i<10;i++)
        {
                LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(R.dimen.num_icon, R.dimen.num_icon);
                ImageView ii= new ImageView(this);
                ii.setBackgroundResource(R.drawable.apple);
                ii.setLayoutParams(layoutParams);
                ll.addView(ii);
        }
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}
My XML:
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity"
    android:id="@+id/llLayout"
    android:orientation="horizontal"
    android:gravity="center" >
</LinearLayout>
My res/values/dimens file for standard phone screen:
<resources>
    <!-- Default screen margins, per the Android Design guidelines. -->
    <dimen name="activity_horizontal_margin">16dp</dimen>
    <dimen name="activity_vertical_margin">16dp</dimen>
        <dimen name="num_icon">55dp</dimen>
</resources>
My res/values/dimens file for 7" screen:
<resources>
    <!--
         Customize dimensions originally defined in res/values/dimens.xml (such as
         screen margins) for sw600dp devices (e.g. 7" tablets) here.
    -->
    <dimen name="num_icon">110dp</dimen>
</resources>
My res/values/dimens file for 10" screen:
<resources>
    <!--
         Customize dimensions originally defined in res/values/dimens.xml (such as
         screen margins) for sw720dp devices (e.g. 10" tablets) here.
    -->
    <dimen name="num_icon">160dp</dimen>
</resources>
It is supposed display 10 images using the dimension XML but it's not. I am seeing the following:

 
     
     
     
    