I'm using eclipse to build an android application. I have created a folder
drawable-xlarge-mdpi and I have kept the images with the following resolutions
122*149px, 124*150px etc.when I tried to launch an emulator with the following screen size
WXGA (1280x800)† my images are looking blur not only the images my listview and text view are also looking blur. why this is happening with the extra large screens,all other screens are working fine .suggest me a better solution or how I can rectify this problem. Here's my code
I have used the following code in layout file to represent images:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom"
android:background="@drawable/mainbg"
>
<LinearLayout android:gravity="top" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1">
<GridView
android:id="@+id/grid_view71"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:numColumns="3"
android:columnWidth="107dip"
android:horizontalSpacing="10dip"
android:verticalSpacing="20dip"
android:gravity="center"
android:stretchMode="columnWidth"
>
</GridView>
</LinearLayout>
<RelativeLayout
android:id="@+id/rel_bottom"
android:layout_width="fill_parent"
android:layout_alignParentBottom="true"
android:layout_height="30dp"
android:background="@drawable/bottom_bar" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/findbtn"
android:id="@+id/img1"
android:onClick="method1"
android:clickable="true"
android:layout_marginLeft="20dp"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/favbtn"
android:layout_alignParentRight="true" android:onClick="method3"
android:clickable="true"
android:id="@+id/img2"
android:layout_marginRight="20dp"
/>
<ImageView
android:id="@+id/img3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/favbtn"
android:layout_centerInParent="true"
android:onClick="method2"
android:clickable="true"
android:visibility="invisible"
/>
</RelativeLayout>
</LinearLayout>
Resource adapter.java file:
public class ResourceAdapter extends BaseAdapter {
private Context mContext;
// Keep all Images in array
public Integer[] mThumbIds = {
R.drawable.aboutus_r, R.drawable.oursolution_r,
R.drawable.capp_r, R.drawable.fbook_r,
R.drawable.twitter_r, R.drawable.contactus_r,
};
public ResourceAdapter(Context c){
mContext = c;
}
public int getCount() {
// TODO Auto-generated method stub
return mThumbIds.length;
}
public Object getItem(int position) {
// TODO Auto-generated method stub
return mThumbIds[position];
}
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
ImageView imageView = new ImageView(mContext);
imageView.setImageResource(mThumbIds[position]);
imageView.setScaleType(ImageView.ScaleType.CENTER_INSIDE);
// imageView.setLayoutParams(new GridView.LayoutParams(70, 70));
imageView.setBackgroundColor(Color.CYAN);
return imageView;
}
}