I have some image files, which are to be used in Android in ImageViews. Now for MDPI. I created new ImageViews, but the IDE make them smaller than I need, so for MDPI I have a smaller image. How can I return the normal size image? If change manually this file in res/drawable-mdpi, nothing happens, in layout the image is small. Maybe I can somehow delete these resources from all files using it? Why replacing image in res/drawable-mdpi gives nothing?
The first image goes here. Need to add 4 below it.
<?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:background="#45010D">
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/radio" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/???" /> // here ??? must be the name of second image and it must be under the first.
</LinearLayout>