我正在浏览Google I / O 2014应用,我看到了这个工具栏代码。我想知道的是他们如何在默认组件中使用自定义xml属性?我知道如何在自定义属性中编写自定义xml,但不是在默认视图中编写,如工具栏。有人可以向我解释一下吗?
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_actionbar"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:iosched="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="?actionBarSize"
android:background="@null"
iosched:contentInsetStart="?actionBarInsetStart"
iosched:popupTheme="@style/ActionBarPopupThemeOverlay"
iosched:theme="@style/ActionBarThemeOverlay"
iosched:titleTextAppearance="@style/ActionBar.TitleText"/>