在ActionBar中设置android中的四个图标

时间:2016-08-09 10:02:16

标签: android android-actionbar

如何在ActionBar中设置四个图标(书签,搜索,菜单,位置),如图像enter image description here

是否可以通过操作栏?或告诉我任何其他选择。

menu_main.xml

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="com.comida.MainActivity">
    <item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:title="@string/action_settings"
        app:showAsAction="never" />
</menu>

style.xml

<resources xmlns:tools="http://schemas.android.com/tools">


    <style name="AppTheme" parent="@android:style/Theme.Holo.Light">
        <item name ="android:actionBarStyle">@style/CustomActionBar</item>

    </style>

    <!-- Application theme. -->
    <style name="CustomActionBar" parent="@android:style/Widget.Holo.Light.ActionBar">
        <item name="android:background">#f26925</item>
        <item name="android:logo">@android:color/transparent</item>
<item name="android:titleTextStyle">@style/CustomTextColor</item>
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
        <item name="android:windowNoTitle">true</item> <!-- Hides the Action Bar -->
        <item name="android:windowFullscreen">true</item> <!-- Hides the status bar -->
    </style>

    <style name="CustomTextColor" parent="@android:style/TextAppearance" >
        <item name="android:textColor">#0000ff</item>



    </style>

</resources>

使用这个就像这个图像。

enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用for(var key in rows){ console.log(JSON.stringify(rows[key].data)) } 中的Toolbar。它支持自定义布局。
https://developer.android.com/reference/android/support/v7/widget/Toolbar.html https://guides.codepath.com/android/Using-the-App-ToolBar