I am using ads banner in my app.Its showing correct on xml layout but I run this code on device then its not showing 480*800 resulation device but showing properly in 720*1280 device.
what should I add this code so its support all screen resulations.
please help Thanks in advance.`
code here
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="bottom">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
ads:adSize="BANNER"
ads:adUnitId="banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
</RelativeLayout>`