The native ad format can be used
to create any size of ad, including full-screen ads like those that are highly
popular in social and entertainment apps. Full-screen native ads can improve
revenue and retention, either through matching the style of existing
full-screen content experiences such as in social apps, or through providing a
means to place ads in "stories" feeds. Here are some examples of
full-screen native ads:
There is no separate API to call to enable full-screen native ads to serve
beyond the instructions for Native
Advanced. However,
there are best practices we recommend when creating full-screen ad experiences:
Customize the AdChoices icon placement
By default, the AdChoices icon is placed at the top-right corner of the ad,
but you can specify any corner where the AdChoices icon should appear by
setting the AdChoicesPosition based on placement of the ad. In the
three images in the previous section, the AdChoices icon is placed in a
corner far away from the Install button, the menu button and other ad
assets to avoid accidental clicks.
Use unique ad unit IDs for each placement
Be sure to create a unique ad unit
ID for each different ad placement
in your app, even if all ad placements are the same format. For example, if
you have an existing native ad placement in your app for a non-full screen
experience, use a new ad unit ID for the full screen experience. Using unique
ad units:
maximizes performance
helps Google return ad assets that better fit your layouts
enables more comprehensive reporting.
Set your media view to a consistent size
Google always tries to serve the best-sized native assets for optimal
performance. To facilitate this, the sizing for your native ads should be
predictable and consistent. Your media view asset should be the same size for
every ad request on the same device. To accomplish this, set your media view
to a fixed size, or set the media view to MATCH_PARENT and make the parent
view a fixed size. Repeat this step for every parent view of the media view
that is not a fixed size.
Enable video ads
Enable the Video media type when
configuring native ads
in the AdMob UI. Allowing video ads to compete for your
inventory can significantly improve performance.
[Optional] Request specific aspect ratios for the media asset
By default, ads of any aspect ratio may be returned. For example, you may get
a landscape or square main creative asset when your app is in portrait
mode. Depending on your native ad layout, you may want to serve only
portrait, landscape, or square ads. You can request assets of specific
aspect ratios to best suit your
layout.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-26 UTC."],[[["\u003cp\u003eFull-screen native ads, ideal for social and entertainment apps, can enhance revenue and retention by mirroring existing content experiences or integrating into "stories" feeds.\u003c/p\u003e\n"],["\u003cp\u003eWhen implementing full-screen native ads, ensure the AdChoices icon is strategically placed away from interactive elements to prevent accidental clicks.\u003c/p\u003e\n"],["\u003cp\u003eEmploy unique ad unit IDs for each ad placement within your app to optimize performance, ad relevance, and reporting capabilities.\u003c/p\u003e\n"],["\u003cp\u003eMaintain consistent sizing for your media view asset, either by using fixed dimensions or ensuring the parent view has a fixed size, to facilitate optimal ad serving.\u003c/p\u003e\n"],["\u003cp\u003eEnable video ads and consider requesting specific aspect ratios for media assets, while noting that restricting aspect ratios may impact ad availability and revenue.\u003c/p\u003e\n"]]],[],null,["# Full-screen native ads\n\nSelect platform: [Android](/admob/android/native/full-screen \"View this page for the Android platform docs.\") [iOS](/admob/ios/native/full-screen \"View this page for the iOS platform docs.\")\n\n\u003cbr /\u003e\n\nThe [native ad format](/admob/android/native) can be used\nto create any size of ad, including full-screen ads like those that are highly\npopular in social and entertainment apps. Full-screen native ads can improve\nrevenue and retention, either through matching the style of existing\nfull-screen content experiences such as in social apps, or through providing a\nmeans to place ads in \"stories\" feeds. Here are some examples of\nfull-screen native ads:\n\n\nThere is no separate API to call to enable full-screen native ads to serve\nbeyond the instructions for [Native\nAdvanced](/admob/android/native/advanced). However,\nthere are best practices we recommend when creating full-screen ad experiences:\n\nCustomize the AdChoices icon placement\n: By default, the AdChoices icon is placed at the top-right corner of the ad,\n but you can specify any corner where the AdChoices icon should appear by\n setting the `AdChoicesPosition` based on placement of the ad. In the\n three images in the previous section, the AdChoices icon is placed in a\n corner far away from the **Install** button, the menu button and other ad\n assets to avoid accidental clicks.\n\nUse unique ad unit IDs for each placement\n\n: Be sure to [create a unique ad unit\n ID](//support.google.com/admob/answer/7187428) for each different ad placement\n in your app, even if all ad placements are the same format. For example, if\n you have an existing native ad placement in your app for a non-full screen\n experience, use a new ad unit ID for the full screen experience. Using unique\n ad units:\n\n - maximizes performance\n - helps Google return ad assets that better fit your layouts\n - enables more comprehensive reporting.\n\nSet your media view to a consistent size\n\n: Google always tries to serve the best-sized native assets for optimal\n performance. To facilitate this, the sizing for your native ads should be\n predictable and consistent. Your media view asset should be the same size for\n every ad request on the same device. To accomplish this, set your media view\n to a fixed size, or set the media view to `MATCH_PARENT` and make the parent\n view a fixed size. Repeat this step for every parent view of the media view\n that is not a fixed size.\n\nEnable video ads\n\n: Enable the `Video` media type when\n\n [configuring native ads](//support.google.com/admob/answer/7187428)\n\n in the AdMob UI. Allowing video ads to compete for your\n inventory can significantly improve performance.\n\n\\[Optional\\] Request specific aspect ratios for the media asset\n\n: By default, ads of any aspect ratio may be returned. For example, you may get\n a landscape or square main creative asset when your app is in portrait\n mode. Depending on your native ad layout, you may want to serve only\n portrait, landscape, or square ads. You can request assets of specific\n [aspect ratios](/admob/android/reference/com/google/android/gms/ads/MediaAspectRatio) to best suit your\n layout.\n\n |-----------|--------|----------|\n | Landscape | Square | Portrait |\n\n \u003cbr /\u003e\n\n ### Java\n\n NativeAdOptions nativeAdOptions =\n new NativeAdOptions.Builder().setMediaAspectRatio(MediaAspectRatio.PORTRAIT).build();\n\n AdLoader loader =\n new AdLoader.Builder(context, \"\u003cvar translate=\"no\"\u003eAD_UNIT_ID\u003c/var\u003e\").withNativeAdOptions(nativeAdOptions).build(); \n https://github.com/googleads/googleads-mobile-android-examples/blob/ccc290a583d7f552bdcf81ea76adc05beaa43f0b/java/advanced/APIDemo/app/src/main/java/com/google/android/gms/snippets/NativeAdOptionsSnippets.java#L54-L58\n\n ### Kotlin\n\n val nativeAdOptions =\n NativeAdOptions.Builder().setMediaAspectRatio(MediaAspectRatio.PORTRAIT).build()\n\n val loader = AdLoader.Builder(context, \"\u003cvar translate=\"no\"\u003eAD_UNIT_ID\u003c/var\u003e\").withNativeAdOptions(nativeAdOptions).build() \n https://github.com/googleads/googleads-mobile-android-examples/blob/ccc290a583d7f552bdcf81ea76adc05beaa43f0b/kotlin/advanced/APIDemo/app/src/main/java/com/google/android/gms/snippets/NativeAdOptionsSnippets.kt#L44-L47\n\nReplace \u003cvar class=\"readonly\" translate=\"no\"\u003eAD_UNIT_ID\u003c/var\u003e with your own ad unit ID.\n| **Caution:** Setting media aspect ratio to portrait, landscape, or square will limit ad availability, and may reduce revenue. To optimize revenue, we recommend leaving the media aspect ratio to the default value of `MediaAspectRatio.ANY`.\n\nAdditional resources\n--------------------\n\n- Full screen native example: [Java](//github.com/googleads/googleads-mobile-android-examples/tree/main/java/admob/FullScreenNativeExample)"]]