使用Action Bar Android开发

时间:2016-02-22 09:31:57

标签: android android-actionbar textview android-titlebar

我是Android开发的新手。 我正在开发一个小项目,该应用程序的标题应位于中心,操作栏左侧是文本视图。

我想知道方法是否正确。  1.我使用

隐藏了操作栏
 ActionBar actionBar = getSupportActionBar();
 actionBar.hide(); 

2.I开发了一个布局来替换像这样的动作栏

https://msdn.microsoft.com/en-us/library/fy30at8h(v=vs.100).aspx

这是正确的做法吗? 如果没有,那么正确的方法是什么?

6 个答案:

答案 0 :(得分:1)

将自定义工具栏添加到您的布局

<android.support.v7.widget.Toolbar
            android:id="@+id/custom_toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay"
            >

            <TextView
                android:id="@+id/tv_edit"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textStyle="bold"
                android:textColor="@color/white"
                android:text="Edit"
                />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center"
                android:padding="5dp"
                android:orientation="horizontal"
                >

                <TextView
                  android:id="@+id/tv_title"
                  android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:textStyle="bold"
                  android:textColor="@color/white"
                  android:text="Movies"
                  />


            </LinearLayout>

            </android.support.v7.widget.Toolbar>

并将此代码添加到onCreate()

中的Java类
Toolbar custom_toolbar= (Toolbar) findViewById(R.id.custom_toolbar);
setSupportActionBar(custom_toolbar);

希望这对你有用,祝你好运....

答案 1 :(得分:0)

是,完美。

一个小小的改动可以是隐藏现有的Action Bar,而不是用你的自定义视图替换它(现在让我们假设它是custom_actionbar.xml)。你的代码是这样的:

        ActionBar mActionBar = getActionBar();
        mActionBar.setDisplayShowHomeEnabled(false);
        mActionBar.setDisplayShowTitleEnabled(false);
        LayoutInflater mInflater = LayoutInflater.from(this);
        View mCustomView = mInflater.inflate(R.layout.custom_actionbar, null);
        mActionBar.setCustomView(mCustomView);
        mActionBar.setDisplayShowCustomEnabled(true);

答案 2 :(得分:0)

  

添加以下代码。它会起作用。

ActionBar actionBar = getActionBar();   
     actionBar.setDisplayShowCustomEnabled(true);
                LayoutInflater inflater = LayoutInflater.from(this);
              View v = inflater.inflate(R.layout.action_bar_title, null);
                TextView titleTextView = (TextView) v.findViewById(R.id.custom_action_bar_title);
                titleTextView.setText("Title");
                actionBar.setDisplayShowHomeEnabled(true);
                actionBar.setIcon(icon);
                actionBar.setCustomView(v);

答案 3 :(得分:0)

按照这种方式

 ActionBar mActionBar = getActionBar();
            mActionBar.setDisplayShowHomeEnabled(false);
            mActionBar.setDisplayShowTitleEnabled(false);
            LayoutInflater mInflater = LayoutInflater.from(this);

            View mCustomView = mInflater.inflate(R.layout.custom_actionbar, null);
            TextView mTitleTextView = (TextView) mCustomView.findViewById(R.id.title_text);
            mTitleTextView.setText("My Own Title");

            ImageButton imageButton = (ImageButton) mCustomView
                    .findViewById(R.id.imageButton);
            imageButton.setOnClickListener(new OnClickListener() {

                @Override
                public void onClick(View view) {
                    Toast.makeText(getApplicationContext(), "Refresh Clicked!",
                            Toast.LENGTH_LONG).show();
                }
            });

            mActionBar.setCustomView(mCustomView);
            mActionBar.setDisplayShowCustomEnabled(true);

和custom_actionbar.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="@drawable/black_pattern" >

    <TextView
        android:id="@+id/title_text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:textAllCaps="true"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="#fff"
        android:textStyle="bold" />

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="35dp"
        android:layout_height="35dp"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:layout_marginLeft="8dp"
        android:src="@drawable/ic_launcher" />

    <ImageButton
        android:id="@+id/imageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="8dp"
        android:background="@null"
        android:src="@android:drawable/ic_menu_rotate" />

</RelativeLayout>

希望这会对你有所帮助

答案 4 :(得分:0)

您的方法是正确的,但请浏览Slidenerd Material设计教程。您可以使用您的规范创建自己的工具栏。以下网站可帮助您: Slidenerd toolbar tutorial

答案 5 :(得分:0)

我建议你使用Lollipop版本的android提供的工具栏api,但是使用getSupportActionbar(),使用它 -

    actionBar.setCustomView(mCustomView);
    actionBar.setDisplayShowCustomEnabled(true);