पर लाइनरलायआउट नहीं दिखा रहा है ठीक है AdMob के साथ वास्तव में अजीब स्थिति। मैं उस विज्ञापन को नीचे रखना चाहता हूं जिसमें मेरे पास लिनियरलाउट है। जब मैं ऐसा करता हूं तो यह कभी नहीं दिखाता है। जब मैं इसे शीर्ष पर रखता हूं तो यह पूरी तरह से दिखाई देता है। यह सुनिश्चित नहीं है कि मेरा कोड क्या है। मैं LogCat में एक चेतावनी है कि कहते हैं मिलता है "विज्ञापन दिखाने के लिए पर्याप्त स्थान नहीं चाहता < 480,75> है: < 480, 0>"एंड्रॉइड एडमोब नीचे
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res/mypackage"
android:id="@+id/mainmenulayout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:id="@+id/headerpic"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/header"/>
<ListView android:id="@android:id/list"
android:divider="#00000000"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="false"
android:background="@android:color/transparent"
android:cacheColorHint="#00000000"
android:layout_alignParentTop="true">
</ListView>
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="myadunit"
ads:adSize="BANNER"
/>
</LinearLayout>
और मेरे OnCreate():
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.appmenu);
// Look up the AdView as a resource and load a request.
AdView adView = (AdView)this.findViewById(R.id.adView);
adView.loadAd(new AdRequest());
String[] mainMenuList = getResources().getStringArray(R.array.mainMenuList);
TypedArray[] picFiles = getResources().obtainTypedArray(R.array.arrayIcon);
setListAdapter(new MyIconAdapter(mainMenuList, picFiles));
this.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
} //close onCreate
हाँ, जिसने इसे धन्यवाद दिया, मुझे अभी भी सीखना है कि वजन कैसे काम करते हैं। लगता है कि पीछे की ओर ऊंचाई 0 बनाते हैं लेकिन फिर आराम को भरने के लिए वजन देखें। वास्तव में एंड्रॉइड लेआउट के साथ नाराज हो रही है ... फिर भी धन्यवाद – JPM