Scaling ImageView to device width
In my Android App I have a Activity which show images which have following size 244 x 330 . I want to show those images in full device width. My layout file looks like this: <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <ImageView android:id="@+id/news_image" android:layout_height="fill_parent" android:layout_width="fill_parent" android:layout