我最近将StartApp集成到我的应用程序中。现在,我不希望广告是全尺寸的,我希望它们在每一边都有一个小的边距。现在我在使用 libGDX 时并没有对布局进行太多更改,因此我之前不必关心 XML 文件。这就是我的 main.xml 的样子:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.startapp.android.publish.banner.Banner
android:id="@+id/startAppBanner"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
现在,我已经尝试了各种方法,例如添加android:layout_margin="10dp"
orandroid:padding="10dp"
到Banner
or LinearLayout
,但这并没有改变任何事情。所以我的问题是:有什么方法可以实现我正在寻找的东西,如果有,怎么做?