Android棒棒糖,从工具栏中的标题添加popup式菜单

我无法看到如何在标题中添加popup式菜单,如许多材料devise示例中所示。 任何帮助将非常感激。

从标题的工具栏弹出

你将需要添加一个微调工具栏:

<android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_height="?attr/actionBarSize" android:layout_width="match_parent" android:background="?attr/colorPrimary"> <Spinner android:id="@+id/spinner_nav" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </android.support.v7.widget.Toolbar> 

您将需要禁用默认标题:

 Toolbar toolbar = findViewById(R.id.toolbar); setSupportActionBar(toolbar); getSupportActionBar().setDisplayShowTitleEnabled(false); 

然后,您可以根据需要在活动/片段中检索并设置微调器。