如果admob
上的代码使用列表并且会在列表中显示多个admob,如何添加activity_main
布局。
如何改变
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId=""
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, "
ads:loadAdOnCreate="true"/>
<com.finder.khmer.KTextView
android:id="@+id/kTextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:layout_margin="10sp" />
<ListView
android:id="@+id/mainlist"
android:layout_height="fill_parent"
android:layout_width="fill_parent">
</ListView>
</LinearLayout>
活动
setContentView(R.layout.activity_main);
listView = (ListView) findViewById(R.id.mainlist);
tv = (KTextView) findViewById(android.R.id.text1);
String[] Network = new String[] { "កម្មវិធី", "Smart", "Metfone","Beeline","QB","Emergency Number"};
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
R.layout.activity_main, R.id.kTextView1, Network);
listView.setAdapter(adapter);
答案 0 :(得分:0)
我不是100%确切地知道你在问什么。但我怀疑您在显示AdView时遇到问题,因为ListView正在消耗整个屏幕。如果这是问题,则修复是将ListView更改为
<ListView
android:id="@+id/mainlist"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_weight="1"
/>
答案 1 :(得分:0)
使用
<Relative layout
和
android:layout_above="@id/..." , android:layout_below="@id/..."
指定要添加的位置,避免因线性布局而导致的问题