导航抽屉未显示

时间:2015-09-11 20:17:13

标签: java android android-activity navigation-drawer

所以我有一个旧的应用程序。 我想添加一个导航抽屉。 因此,我希望导航抽屉能够处理当前活动并仅显示当前活动

public class WebViewActivity extends Activity {

所以主要活动是webView。

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">


<!--
      main content
 -->

<RelativeLayout

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:background="#ffffff" >

    <WebView

        android:id="@+id/webView1"

        android:layout_width="fill_parent"

        android:layout_height="fill_parent"

        android:background="#ffffff" />

</RelativeLayout>

<!--
    navigation list item
-->
<FrameLayout

    android:id="@+id/content_frame"

    android:layout_width="match_parent"

    android:layout_height="match_parent" />

<ListView

    android:id="@+id/left_drawer"

    android:layout_width="240dp"

    android:layout_height="match_parent"

    android:layout_gravity="left"

    android:background="#2A323D"

    android:cacheColorHint="#00000000"

    android:choiceMode="singleChoice" />

</android.support.v4.widget.DrawerLayout>

所以当我点击菜单按钮或我的webView从左到右检测到手势时,我希望我的抽屉出现

    mTitle = mDrawerTitle = getTitle();
    mPlanetTitles = getResources().getStringArray(R.array.planets_array);
    mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
    mDrawerList = (ListView) findViewById(R.id.left_drawer);

    drawerView = (View)findViewById(R.id.left_drawer);

    mDrawerToggle = new ActionBarDrawerToggle(
            this,                  /* host Activity */
            mDrawerLayout,         /* DrawerLayout object */
            R.drawable.ic_drawer,  /* nav drawer image to replace 'Up' caret */
            R.string.drawer_open,  /* "open drawer" description for accessibility */
            R.string.drawer_close  /* "close drawer" description for accessibility */
    ) {
        public void onDrawerClosed(View view) {
            getActionBar().setTitle(mTitle);
        }

        public void onDrawerOpened(View drawerView) {
            getActionBar().setTitle(mDrawerTitle);
        }
    };
    mDrawerLayout.setDrawerListener(mDrawerToggle);

    mDrawerList.setAdapter(new ArrayAdapter<String>(this,
            R.layout.drawer_list_item, mPlanetTitles));
    mDrawerList.setOnItemClickListener(new DrawerItemClickListener());
    // enable ActionBar app icon to behave as action to toggle nav drawer
    getActionBar().setDisplayHomeAsUpEnabled(true);
    getActionBar().setHomeButtonEnabled(true);

AND

        webView.setOnTouchListener(new View.OnTouchListener() {
        public boolean onTouch(View v, MotionEvent event) {
            switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN:
                    x1 = event.getX();
                    break;
                case MotionEvent.ACTION_UP:
                    x2 = event.getX();
                    float deltaX = x2 - x1;
                    if (Math.abs(deltaX) > MIN_DISTANCE) {
                        mDrawerLayout.openDrawer(GravityCompat.START);
                        return false;
                    } else {
                        // consider as something else - a screen tap for example
                    }
                    break;
            }
            return true;
        }
    });

我真的不知道我错过了什么,但 mDrawerLayout.openDrawer(GravityCompat.START); 没有做任何事情。 日志中没有错误。 抽出的抽屉没有出现,没有任何反应。 我按照official指南和更多在线方式进行了操作。没有运气。

我不想使用碎片!

更新

问题是,在我的'onCreate'中,我有类似的内容:setContentView(webView);

所以如果我将其删除,我的导航抽屉就可以了! 但我的webView没有。 我错过了什么?

3 个答案:

答案 0 :(得分:1)

从main_activity中删除FrameLayout然后尝试

答案 1 :(得分:0)

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff" >

<WebView
    android:id="@+id/webView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff" />

</RelativeLayout>

<ListView
    android:id="@+id/left_drawer"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="#2A323D"
    android:cacheColorHint="#00000000"
    android:choiceMode="singleChoice" />

</android.support.v4.widget.DrawerLayout>

只需复制并粘贴

即可

答案 2 :(得分:0)

你的onCreate()必须有setContentView(R.layout.drawer_layout); 其中drawer_layout是以DrawerLayout为根视图的

关注documentation 下载示例代码,查看哪个xml传递给setContentView()

如果您仔细阅读,您会注意到activity_main.xml包含Drawerlayout而不是主要内容的xml。

另请注意,DrawerLayout必须包含两个子ViewGroup,其中第一个可以是片段或FrameLayout,它在运行时填充片段,第二个必须是NavigationView

如果您仍感到困惑,可以按照this guide进行操作,其中包含分步说明。值得一看。