我有一个片段的活动。在片段之上,我想放置一个小广告。问题是,如果我在片段顶部定义任何内容,片段中的文本将出现剪切。查看图像(显示广告之前和之后)。
之前: 之后: 注意滚动条,它在顶部,这意味着它正在削减我的按钮的可见性。
我想要的只是在广告可见时保持文本“Jogar”可见。如有必要,这里有一些 xml 和代码可以提供帮助。如果您有任何解决方法的想法,请帮助我。
活动_xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#00F">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
ads:adUnitId="..."
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR"
android:background="@android:color/transparent"
ads:loadAdOnCreate="true" />
<FrameLayout android:id="@+id/fragmentPlaceholder"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0F0"/>
</LinearLayout>
片段_xml:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center">
<Button android:id="@+id/playButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:text="@string/play"
style="@style/TextFont"/>
<Button android:id="@+id/rankButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/rank"
style="@style/TextFont"/>
<Button android:id="@+id/achievementsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/achievements"
style="@style/TextFont" />
<Button android:id="@+id/settingsButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/settings"
style="@style/TextFont"/>
<com.google.android.gms.common.SignInButton
android:id="@+id/sign_in_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:id="@+id/sign_out_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:textColor="@android:color/black"
android:background="@android:drawable/btn_default"
android:text="@string/logout"
android:visibility="gone" />
</LinearLayout>
</ScrollView>
在 Fragment 类中,我膨胀了视图调用:
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = inflater.inflate(R.layout.menu_initial, container, false);
...
在 Activity 类中,我使用以下命令调用片段:
fm = getSupportFragmentManager();
if(fm.getBackStackEntryCount() == 0){
initialMenu = new InitialMenu();
fm.beginTransaction().replace(R.id.fragmentPlaceholder, initialMenu, "initialFrag").commit();
}