可以作为一个控件直接在布局中使用
android:background="@color/colorPrimary"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="60dp">
android:id="@+id/tittle_tvtb"
android:layout_gravity="center"
android:text="标题是我"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="match_parent">
</Toolbar>
//有很多要求是在中间显示文字。可以直接讲TEXTView加在布局里
toolbar.setNavigationIcon(R.mipmap.ic_phone);//设置左边图片
toolbar.setTitle("我是标题");
//左边图片的点击事件
toolbar.setNavigationOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(SlidingMenuAct.this, "关闭", Toast.LENGTH_SHORT).show();
}
});