美文网首页日常 bug
android.R.id.home clickListener

android.R.id.home clickListener

作者: hunter886 | 来源:发表于2017-04-18 17:08 被阅读178次

    今天踩了一个小坑,怪我大意了,记录一下。

     <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?android:attr/actionBarSize"
            android:background="@color/colorPrimary"
            app:navigationIcon="@drawable/ic_back"  />
    

    Toolbar 里面有一个 app:navigationIcon 点击这个按钮就返回上一层页面

    但是怎么也触发不了这个事件(事件监听写的没问题)

    后来发现问题是因为:
    需要在 Activity 里面加入

        setSupportActionBar(toolbar);
    

    相关文章

      网友评论

        本文标题:android.R.id.home clickListener

        本文链接:https://www.haomeiwen.com/subject/twcqzttx.html