0

こんにちは、jfeinstein10/SlidingMenu ライブラリを使用して、スライド メニューをプロジェクトに実装しています。

ホームページ.java

    import android.os.Bundle;
    import com.jeremyfeinstein.slidingmenu.lib.SlidingMenu;
    import com.jeremyfeinstein.slidingmenu.lib.app.SlidingFragmentActivity;

     public class HomePage extends SlidingFragmentActivity {

    SlidingMenu menu;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_home_page);
        setBehindContentView(R.layout.behind);

        //customize the slide menu
        menu = new SlidingMenu(this);
        menu.setMode(SlidingMenu.LEFT);
        menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);       
        menu.setShadowWidthRes(R.dimen.shadow);
        menu.setFadeDegree(0.35f);
        menu.attachToActivity(this, SlidingMenu.SLIDING_CONTENT);
        menu.setBehindOffsetRes(R.dimen.slidewidth);

    }
    }

XML ファイル:

activity_home_page.xml

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

</RelativeLayout>

後ろ.xml

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >


</LinearLayout>

dimen.xml

  **<?xml version="1.0" encoding="utf-8"?>
<resources>

    <dimen name = "slidewidth">60dp</dimen>

    <dimen name="shadow">15dp</dimen>
</resources>**

私の質問は、

アプリを実行すると、画面がスライドしますが、コードで設定されたオフセットとしてではなく、画面が完全に非表示になります

    menu.setBehindOffsetRes(R.dimen.slidewidth);

私は何を間違えましたか?誰でもこれを手伝ってもらえますか?

4

1 に答える 1

0

あなたはに与えandroid:layout_width="match_parent"ましLinearLayoutbehind.xml

それを与えるwrap_content

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:orientation="vertical" >

お役に立てば幸いですツ</p>

于 2015-02-02T11:30:29.283 に答える