我试图只制作一个小应用程序,但我的布局文件有问题。
将广告放入代码后,我的布局已经转移,背景也是如此。 edittext也下降了两个按钮。我不知道如何在广告位置之后使我的布局变得相同。你可以帮我吗?
Here's the code:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background">
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="MY_AD_ID"
android:layout_alignParentTop="true"
/>
<EditText
android:id="@+id/et_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="135dp"
/>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:text="Send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_post"
android:layout_gravity="right"
android:layout_alignParentRight="true"/>
<Button
android:text="Clear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btn_clear"/>
</RelativeLayout>
</LinearLayout>
更新:现在我可以解决布局问题,但我不知道如何制作我的应用程序,如果我点击编辑文本,键盘即将出现,不要推开背景。谢谢你的帮助!
答案 0 :(得分:1)
您尚未关闭第一个RelativeLayout
</RelativeLayout>
答案 1 :(得分:0)
如果您不希望它发生,请将admob放在应用程序的末尾。