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:



Native Advanced- এর নির্দেশাবলীর বাইরে ফুল-স্ক্রিন নেটিভ বিজ্ঞাপন পরিবেশন সক্ষম করার জন্য কল করার মতো কোনো আলাদা API নেই। তবে, ফুল-স্ক্রিন বিজ্ঞাপন অভিজ্ঞতা তৈরি করার ক্ষেত্রে আমরা কিছু সেরা অনুশীলন অনুসরণ করার পরামর্শ দিই:
- 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
AdChoicesPositionbased 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
আপনার অ্যাপের প্রতিটি ভিন্ন অ্যাড প্লেসমেন্টের জন্য একটি অনন্য অ্যাড ইউনিট আইডি তৈরি করতে ভুলবেন না, এমনকি যদি সমস্ত অ্যাড প্লেসমেন্ট একই ফরম্যাটের হয়। উদাহরণস্বরূপ, যদি আপনার অ্যাপে নন-ফুল স্ক্রিন অভিজ্ঞতার জন্য একটি বিদ্যমান নেটিভ অ্যাড প্লেসমেন্ট থাকে, তাহলে ফুল স্ক্রিন অভিজ্ঞতার জন্য একটি নতুন অ্যাড ইউনিট আইডি ব্যবহার করুন। অনন্য অ্যাড ইউনিট ব্যবহার:
- 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_PARENTand 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
AdMob UI-তে নেটিভ বিজ্ঞাপন কনফিগার করার সময়
Videoমিডিয়া টাইপটি সক্রিয় করুন। আপনার ইনভেন্টরির জন্য ভিডিও বিজ্ঞাপনকে প্রতিযোগিতা করার সুযোগ দিলে পারফরম্যান্স উল্লেখযোগ্যভাবে উন্নত হতে পারে।- [ঐচ্ছিক] মিডিয়া অ্যাসেটের জন্য নির্দিষ্ট অ্যাস্পেক্ট রেশিও অনুরোধ করুন
ডিফল্টরূপে, যেকোনো অ্যাস্পেক্ট রেশিওর বিজ্ঞাপন দেখানো হতে পারে। উদাহরণস্বরূপ, আপনার অ্যাপটি পোর্ট্রেট মোডে থাকলেও আপনি একটি ল্যান্ডস্কেপ বা বর্গাকার প্রধান ক্রিয়েটিভ অ্যাসেট পেতে পারেন। আপনার নেটিভ বিজ্ঞাপন লেআউটের উপর নির্ভর করে, আপনি শুধুমাত্র পোর্ট্রেট, ল্যান্ডস্কেপ বা বর্গাকার বিজ্ঞাপন দেখাতে চাইতে পারেন। আপনার লেআউটের সাথে সবচেয়ে ভালোভাবে মানানসই করার জন্য আপনি নির্দিষ্ট অ্যাস্পেক্ট রেশিওর অ্যাসেটের অনুরোধ করতে পারেন।

ভূদৃশ্য
স্কয়ার
প্রতিকৃতিকোটলিন
val adRequest = NativeAdRequest.Builder(adUnitId, listOf(NativeAd.NativeAdType.NATIVE)) .setMediaAspectRatio(NativeAd.NativeMediaAspectRatio.PORTRAIT) .build()জাভা
List<NativeAd.NativeAdType> adTypes = Arrays.asList(NativeAd.NativeAdType.NATIVE); NativeAdRequest adRequest = new NativeAdRequest.Builder(adUnitId, adTypes) .setMediaAspectRatio(NativeAd.NativeMediaAspectRatio.PORTRAIT) .build();