<com.google.android.gms.ads.formats.MediaView
android:id="@+id/appinstall_media"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxHeight="200dp"
android:padding="2dp">MediaView m = adView.getMediaView();
m.setOnHierarchyChangeListener(new ViewGroup.OnHierarchyChangeListener() {
@Override
public void onChildViewAdded(View parent, View child) {
if (child instanceof ImageView) {
ImageView imageView = (ImageView) child;
imageView.setAdjustViewBounds(true);
}
}
@Override
public void onChildViewRemoved(View parent, View child) {}
});