Toolbar
Posted lin513
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Toolbar相关的知识,希望对你有一定的参考价值。
<androidx.appcompat.widget.Toolbar
android:background="#ffff00"
app:navigationIcon="@drawable/baseline_close_24"
app:title="主标题"
android:id="@+id/tb"
app:titleTextColor="#ff0000"
app:subtitle="子标题"
app:subtitleTextColor="#ff0000"
android:layout_
android:layout_>
<TextView
android:layout_
android:layout_
android:layout_gravity="center"
></TextView>
Toolbar toolbar = findViewById(R.id.tb);
toolbar.setNavigationOnClickListener(new View.OnClickListener()
@Override
public void onClick(View view)
Log.e("leo","onClick:被点击了");
);
以上是关于Toolbar的主要内容,如果未能解决你的问题,请参考以下文章
原来Toolbar还能这么用?Toolbar使用最全解析。网友:终于不用老是自定义标题栏啦!