以ActionBar的方式ActionBarDrawerToggle

时间:2014-11-21 11:51:23

标签: android android-layout android-actionbar

我正在尝试将自定义ActionBar(包含渐变)实现到支持NavigationDrawerFragment的布局中。在XML中构建了自定义ActionBar布局后,我使用以下结果测试了我的应用程序。

Result of my custom ActionBar layout

如您所见,渐变不会从最右侧开始。它在ActionBarDrawerToggleNavigationDrawerFragment的“汉堡包”菜单按钮之后开始。 我希望我的渐变从屏幕的左侧移动到最右侧。

到目前为止,这就是我所拥有的:

private void showGlobalContextActionBar()
{
    actionBar = getActionBar();
    actionBar.setDisplayShowTitleEnabled(false);
    actionBar.setDisplayShowCustomEnabled(true);
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
    actionBar.setLogo(new ColorDrawable(Color.TRANSPARENT));

    LayoutInflater inflater = this.getActivity().getLayoutInflater();
    View actionBarLayout = (View) inflater.inflate(R.layout.action_bar, null);

    // Gradient
    final View gradientView = actionBarLayout.findViewById(R.id.actionbar_gradient);
    PaintDrawable p = EricssonGradient.getActionBarGradient(gradientView);
    gradientView.setBackground(p);

    // Title
    titleView = (TextView) actionBarLayout.findViewById(R.id.title);
    titleView.setTypeface(app.getFont());
    titleView.setText(res.getString(R.string.menu_title));

    // Profile icon
    ImageView profileIcon = (ImageView) actionBarLayout.findViewById(R.id.icon_profile);
    profileIcon.setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            if(app.isLoggedIn())
            {
                // Find and select the PROFILE fragment
                int profilePos = app.getFragmentPosition(ACDC.FRAGMENT_PROFILE);
                selectItem(profilePos);
            }
        }
    });

    //assign the view to the actionbar
    actionBar.setCustomView(actionBarLayout);
}

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/transparent"
    android:layout_gravity="fill_horizontal"
    android:orientation="vertical">

    <View
        android:id="@+id/actionbar_gradient"
        android:layout_width="match_parent"
        android:layout_height="3dp"
        android:background="@drawable/horizontal_progress_bar" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/title"
            android:layout_width="fill_parent"
            android:layout_height="match_parent"
            android:layout_marginStart="10dp"
            android:gravity="center"
            android:textSize="22sp"
            android:maxLines="1"
            android:textColor="#000"
            android:ellipsize="end"
            android:layout_weight="4"/>

        <ImageView
            android:minWidth="50dp"
            android:id="@+id/icon_profile"
            android:paddingTop="5dp"
            android:paddingBottom="5dp"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_gravity="end"
            android:gravity="center"
            android:src="@drawable/icon_profile"
            android:contentDescription="@string/action_profile"
            android:layout_weight="1"
            android:background="#EFEDEE"/>

    </LinearLayout>

</LinearLayout>

0 个答案:

没有答案