I am developing an app in which ,i'm in need to put a banner like in NDTV and techcrunch at the bottom of the app screen ,
Problem :
I have tried with the size 320 x 38 px which appears perfect. When I use a height greater than 38 it's pixelated and here is my code:
<ImageView
android:id="@+id/listBanner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:adjustViewBounds="true"
android:cropToPadding="false"
android:scaleType="fitXY"
android:src="@drawable/mobi" />
Could you please help me.
Thank you in advance!