带有Min-SDK 11的RTL ActionBar

时间:2016-08-25 18:10:36

标签: android android-actionbar

我创建DrawerLayoutMin-Sdk为11(也无法更改Min-Sdk)。我需要将ActionBar更改为 RTL 并更改菜单图标。我发现的所有解决方案都需要Min-Sdk 17.有没有办法做到这一点?

enter image description here

我可以在Eclipse项目中使用ActionBarRTLizer吗,在Sdk-11中使用ActionBarRTLizer吗?

如何在项目中导入ActionBarRTLizer?

1 个答案:

答案 0 :(得分:1)

我真的建议使用Toolbar而不是ActionBar(ActionBarRTlize是相对较旧的存储库)。通过使用工具栏,您可以轻松地对其进行自定义(RTL或您想要的任何内容)。

以下是我最近的工具栏的片段可能对您有所帮助:

 <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@color/gray_lighter"
        app:contentInsetEnd="0dp"
        app:contentInsetLeft="0dp"
        app:contentInsetRight="0dp"
        app:contentInsetStart="0dp"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center_vertical">

            <!--selectableItemBackgroundBorderless-->
            <ImageButton
                android:id="@+id/icon_toolbar_back"
                style="@style/IconFont.XLarge"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:layout_alignParentLeft="true"
                android:layout_alignParentStart="true"
                android:background="@drawable/selector_button_toolbar"
                android:clickable="true"
                android:focusable="true"
                android:minWidth="56dp"
                />

            <TextView
                android:id="@+id/text_toolbar_title"
                style="@style/Textview.Dark.MediumLarge"
                android:layout_width="match_parent"
                android:layout_height="48dp"
                android:layout_marginRight="48dp"
                android:layout_toRightOf="@+id/icon_toolbar_back"
                android:gravity="center" />
        </RelativeLayout>
    </android.support.v7.widget.Toolbar>

有一点要提及,不要忘记将主题更改为NoActionBar

  <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>