Actionbarsherlock:右侧标志 - 左侧按钮

时间:2013-12-18 09:11:26

标签: android layout android-actionbar actionbarsherlock

我将ActionbarSherlock用于我的应用程序。 是否有可能更改操作栏中项目的排列?

这是我的默认操作栏:

Default ActionBarSherlock
我想要这样的东西:

enter image description here

我已经尝试过创建自定义布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
    <TextView
        android:id="@+id/actionbar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/app_name"
        android:textColor="@color/titleColor"
        android:textSize="16sp"
        android:textStyle="bold" >
 </TextView>


<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_centerVertical="true"
    android:clickable="true"
    android:src="@drawable/logo" />

</RelativeLayout>


getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.custom_actionbar_layout);

但我得到的是这样的:

enter image description here

有人有小费吗?

0 个答案:

没有答案