我的问题是这样的: Make adview stick in place when sliding menu
任何人都可以告诉我,我该如何解决这个问题? 非常感谢你。
更新
menu = new SlidingMenu(this);
menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);
menu.setShadowWidthRes(R.dimen.sliding_menu_shadow_width);
menu.setShadowDrawable(R.drawable.sliding_menu_shadow);
menu.setBehindOffsetRes(R.dimen.sliding_menu_offset);
menu.setFadeDegree(0.35f);
menu.attachToActivity(this, SlidingMenu.SLIDING_WINDOW);
menu.setMenu(R.layout.main_menu);
这是我的slidingMenu
这是我的xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#444444"
android:configChanges="orientation"
android:screenOrientation="portrait"
android:orientation="vertical">
<FrameLayout
android:id="@+id/mainContent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/adView"
android:layout_alignParentTop="true" >
</FrameLayout>
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id" >
</com.google.android.gms.ads.AdView>
</RelativeLayout>
所以我有两个不同的xml文件,一个用于菜单,一个用于“主页面”。
答案 0 :(得分:0)
使用FrameLayout并在其中添加jfeinstein滑动菜单和adView。结构将是。
<FrameLayout ....
>
<jfeinsteinSlider ... />
<AdView .../> This shoul be wrap_content for height and set apropirate gravity to the view
</FrameLayout>
希望这能解决您的问题