วิธีจัดตำแหน่งชื่อ ActionBar ให้อยู่กึ่งกลางใน Android


102

ฉันกำลังพยายามใช้รหัสต่อไปนี้เพื่อจัดข้อความให้อยู่กึ่งกลางActionBarแต่มันจัดแนวไปทางซ้าย

คุณจะทำให้มันปรากฏในศูนย์ได้อย่างไร?

ActionBar actionBar = getActionBar();
actionBar.setDisplayShowTitleEnabled(true);
actionBar.setTitle("Canteen Home");
actionBar.setHomeButtonEnabled(true);
actionBar.setIcon(R.drawable.back);

นี่เป็นคำถามเก่ามาก อย่างไรก็ตามทางออกเดียวที่ฉันเห็นด้านล่างนี้คือการสร้างแถบการทำงานที่กำหนดเอง นี่คือวิธีแก้ปัญหาโดยไม่ต้องสร้างแถบการทำงานแบบกำหนดเอง stackoverflow.com/a/42465266/3866010หวังว่ามันจะช่วยใครสักคน
ᴛʜᴇᴘᴀᴛᴇʟ

1
เกือบ 8 ปีหลังจากที่ฉันถามคำถามนี้โดยใช้คำตอบอีกครั้ง: D
Sourabh Saldi

คำตอบ:


201

หากต้องการให้หัวเรื่องอยู่ตรงกลางใน ABS (หากคุณต้องการให้เป็นค่าเริ่มต้นActionBarเพียงแค่ลบ "การสนับสนุน" ในชื่อวิธีการ) คุณสามารถทำได้:

ในกิจกรรมของคุณในonCreate()วิธีการของคุณ:

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

abs_layout:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
        android:layout_gravity="center"
    android:orientation="vertical">

    <android.support.v7.widget.AppCompatTextView
        android:id="@+id/tvTitle"
        style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textColor="#FFFFFF" />

</LinearLayout>

ตอนนี้คุณควรมีActionbarเพียงชื่อ หากคุณต้องการตั้งค่าพื้นหลังแบบกำหนดเองให้ตั้งค่าใน Layout ด้านบน (แต่อย่าลืมตั้งค่าandroid:layout_height="match_parent")

หรือด้วย:

getSupportActionBar().setBackgroundDrawable(getResources().getDrawable(R.drawable.yourimage));

6
จะเพิ่มภาพปุ่มย้อนกลับที่กำหนดเองได้อย่างไร?
Sourabh Saldi

13
สำหรับฉันผลลัพธ์ก็คือแถบการทำงานถูกเลื่อนไปทางขวาหรือซ้ายเล็กน้อยขึ้นอยู่กับปุ่มการทำงานที่ฉันแสดง ในการแก้ไขฉันแค่ตั้งค่า layout_width เป็น "WRAP_CONTENT"
alfongj

11
โซลูชันของ Pepillo ไม่ได้ผลสำหรับฉันเนื่องจากเนื้อหาไม่ได้อยู่ตรงกลางอีกต่อไป ฉันสามารถแก้ปัญหานี้ได้ด้วยการเพิ่มandroid:layout_gravity="center"LinearLayout
Silox

8
@Nezam มันเป็นพฤติกรรมที่คาดหวัง ลอง((TextView)actionBar.getCustomView().findViewById(R.id.textView1)).setText("new title");โดยที่ textView1 คือTextViewรหัสของคุณในCustomView ของคุณ
Sufian

8
หากมีรายการเมนูจะอยู่ตรงกลางไม่ถูกต้อง หากต้องการให้หัวเรื่องอยู่ตรงกลางเสมอให้เพิ่ม "WRAP_CONTENT" ไปที่ LinearLayout แล้วย้าย android: layout_gravity = "center" จาก TextView ไปที่ LinearLayout
DominicM

35

ฉันไม่ประสบความสำเร็จกับคำตอบอื่น ๆ มากนัก ... ด้านล่างนี้คือสิ่งที่ใช้ได้ผลสำหรับฉันบน Android 4.4.3 โดยใช้ ActionBar ในไลบรารีการสนับสนุน v7 ฉันตั้งค่าให้แสดงไอคอนลิ้นชักการนำทาง ("ปุ่มเมนูเบอร์เกอร์")

XML

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/actionbar_textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:maxLines="1"
        android:clickable="false"
        android:focusable="false"
        android:longClickable="false"
        android:textStyle="bold"
        android:textSize="18sp"
        android:textColor="#FFFFFF" />

</LinearLayout>

Java

//Customize the ActionBar
final ActionBar abar = getSupportActionBar();
abar.setBackgroundDrawable(getResources().getDrawable(R.drawable.actionbar_background));//line under the action bar
View viewActionBar = getLayoutInflater().inflate(R.layout.actionbar_titletext_layout, null);
ActionBar.LayoutParams params = new ActionBar.LayoutParams(//Center the textview in the ActionBar !
        ActionBar.LayoutParams.WRAP_CONTENT, 
        ActionBar.LayoutParams.MATCH_PARENT, 
        Gravity.CENTER);
TextView textviewTitle = (TextView) viewActionBar.findViewById(R.id.actionbar_textview);
textviewTitle.setText("Test");
abar.setCustomView(viewActionBar, params);
abar.setDisplayShowCustomEnabled(true);
abar.setDisplayShowTitleEnabled(false);
abar.setDisplayHomeAsUpEnabled(true);
abar.setIcon(R.color.transparent);
abar.setHomeButtonEnabled(true);

ทำไมเราต้องสร้างparamsวัตถุ ?? เราไม่สามารถระบุแรงโน้มถ่วงในไฟล์เค้าโครงภายนอกที่เรากำหนดให้กับ ActionBar ได้
Deep Lathia

10

กำหนดมุมมองที่คุณกำหนดเองด้วยข้อความชื่อเรื่องจากนั้นส่ง LayoutParams ไปที่ setCustomView () ตามที่ Sergii กล่าว

ActionBar actionBar = getSupportActionBar()
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); 
actionBar.setCustomView(getLayoutInflater().inflate(R.layout.action_bar_home, null),
        new ActionBar.LayoutParams(
                ActionBar.LayoutParams.WRAP_CONTENT,
                ActionBar.LayoutParams.MATCH_PARENT,
                Gravity.CENTER
        )
);

แก้ไข : อย่างน้อยสำหรับความกว้างคุณควรใช้ WRAP_CONTENT หรือลิ้นชักการนำทางไอคอนแอป ฯลฯ จะไม่ปรากฏ (มุมมองแบบกำหนดเองที่แสดงอยู่ด้านบนของมุมมองอื่น ๆ บนแถบการทำงาน) สิ่งนี้จะเกิดขึ้นโดยเฉพาะเมื่อไม่มีการแสดงปุ่มการทำงาน

แก้ไข : เทียบเท่าในรูปแบบ xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="center_horizontal"
    android:orientation="vertical">

สิ่งนี้ไม่จำเป็นต้องระบุ LayoutParams

actionBar.setCustomView(getLayoutInflater().inflate(R.layout.action_bar_home, null);

8

เพียงเพิ่มคำตอบสั้น ๆ ของ Ahmad คุณไม่สามารถใช้ getSupportActionBar (). setTitle ได้อีกต่อไปเมื่อใช้มุมมองแบบกำหนดเองกับ TextView ดังนั้นในการตั้งชื่อเรื่องเมื่อคุณมีหลายกิจกรรมด้วย ActionBar ที่กำหนดเองนี้ (โดยใช้ xml นี้) ในเมธอด onCreate () ของคุณหลังจากที่คุณกำหนดมุมมองแบบกำหนดเอง:

TextView textViewTitle = (TextView) findViewById(R.id.mytext);
textViewTitle.setText(R.string.title_for_this_activity);

4

ตกลง. หลังจากการวิจัยจำนวนมากรวมกับคำตอบที่ยอมรับข้างต้นฉันได้พบวิธีแก้ปัญหาที่ใช้ได้ผลเช่นกันหากคุณมีสิ่งอื่นในแถบการทำงาน (ปุ่มย้อนกลับ / ปุ่มโฮมปุ่มเมนู) โดยพื้นฐานแล้วฉันได้ใส่วิธีการแทนที่ในกิจกรรมพื้นฐาน (ซึ่งกิจกรรมอื่น ๆ ทั้งหมดขยายออกไป) และวางโค้ดไว้ที่นั่น รหัสนี้ตั้งชื่อของแต่ละกิจกรรมตามที่ระบุไว้ใน AndroidManifest.xml และยังทำสิ่งที่กำหนดเองอื่น ๆ อีกด้วย (เช่นการตั้งค่าโทนสีที่กำหนดเองบนปุ่มแถบการทำงานและแบบอักษรที่กำหนดเองบนชื่อ) คุณจะต้องละทิ้งแรงโน้มถ่วงใน action_bar.xml และใช้ช่องว่างภายในแทน actionBar != nullใช้การตรวจสอบเนื่องจากกิจกรรมทั้งหมดของฉันไม่ได้มีเพียงอย่างเดียว

ทดสอบกับ 4.4.2 และ 5.0.1

public class BaseActivity extends AppCompatActivity {
private ActionBar actionBar;
private TextView actionBarTitle;
private Toolbar toolbar;

@Override
protected void onCreate(Bundle savedInstanceState) {
    getWindow().requestFeature(Window.FEATURE_CONTENT_TRANSITIONS);
    super.onCreate(savedInstanceState);     
    ...
    getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

    actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.setElevation(0);
        actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
        actionBar.setCustomView(R.layout.action_bar);

        LinearLayout layout = (LinearLayout) actionBar.getCustomView();
        actionBarTitle = (TextView) layout.getChildAt(0);
        actionBarTitle.setText(this.getTitle());
        actionBarTitle.setTypeface(Utility.getSecondaryFont(this));
        toolbar = (Toolbar) layout.getParent();
        toolbar.setContentInsetsAbsolute(0, 0);

        if (this.getClass() == BackButtonActivity.class || this.getClass() == AnotherBackButtonActivity.class) {
            actionBar.setHomeButtonEnabled(true);
            actionBar.setDisplayHomeAsUpEnabled(true);
            actionBar.setDisplayShowHomeEnabled(true);
            Drawable wrapDrawable = DrawableCompat.wrap(getResources().getDrawable(R.drawable.ic_back));
            DrawableCompat.setTint(wrapDrawable, getResources().getColor(android.R.color.white));
            actionBar.setHomeAsUpIndicator(wrapDrawable);
            actionBar.setIcon(null);
        }
        else {
            actionBar.setHomeButtonEnabled(false);
            actionBar.setDisplayHomeAsUpEnabled(false);
            actionBar.setDisplayShowHomeEnabled(false);
            actionBar.setHomeAsUpIndicator(null);
            actionBar.setIcon(null);
        }
    }

    try {
        ViewConfiguration config = ViewConfiguration.get(this);
        Field menuKeyField = ViewConfiguration.class.getDeclaredField("sHasPermanentMenuKey");
        if(menuKeyField != null) {
            menuKeyField.setAccessible(true);
            menuKeyField.setBoolean(config, false);
        }
    } catch (Exception ex) {
        // Ignore
    }
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    if (actionBar != null) {
        int padding = (getDisplayWidth() - actionBarTitle.getWidth())/2;

        MenuInflater inflater = getMenuInflater();
        if (this.getClass() == MenuActivity.class) {
            inflater.inflate(R.menu.activity_close_menu, menu);
        }
        else {
            inflater.inflate(R.menu.activity_open_menu, menu);
        }

        MenuItem item = menu.findItem(R.id.main_menu);
        Drawable icon = item.getIcon();
        icon.mutate().mutate().setColorFilter(getResources().getColor(R.color.white), PorterDuff.Mode.SRC_IN);
        item.setIcon(icon);

        ImageButton imageButton;
        for (int i =0; i < toolbar.getChildCount(); i++) {
            if (toolbar.getChildAt(i).getClass() == ImageButton.class) {
                imageButton = (ImageButton) toolbar.getChildAt(i);
                padding -= imageButton.getWidth();
                break;
            }
        }

        actionBarTitle.setPadding(padding, 0, 0, 0);
    }

    return super.onCreateOptionsMenu(menu);
} ...

และ action_bar.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="wrap_content"
          android:layout_gravity="center"
          android:orientation="horizontal">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="@color/actionbar_text_color"
        android:textAllCaps="true"
        android:textSize="9pt"
        />

</LinearLayout>

แก้ไข : หากคุณต้องการเปลี่ยนชื่อเรื่องเป็นอย่างอื่นหลังจากโหลดกิจกรรมแล้ว (เรียกใช้ onCreateOptionsMenu แล้ว) ให้ใส่ TextView อื่นใน action_bar.xml ของคุณและใช้รหัสต่อไปนี้เพื่อ "pad" TextView ใหม่นี้ให้ตั้งค่าข้อความและแสดง มัน:

protected void setSubTitle(CharSequence title) {

    if (!initActionBarTitle()) return;

    if (actionBarSubTitle != null) {
        if (title != null || title.length() > 0) {
            actionBarSubTitle.setText(title);
            setActionBarSubTitlePadding();
        }
    }
}

private void setActionBarSubTitlePadding() {
    if (actionBarSubTitlePaddingSet) return;
    ViewTreeObserver vto = layout.getViewTreeObserver();
    if(vto.isAlive()){
        vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
            @Override
            public void onGlobalLayout() {
                int padding = (getDisplayWidth() - actionBarSubTitle.getWidth())/2;

                ImageButton imageButton;
                for (int i = 0; i < toolbar.getChildCount(); i++) {
                    if (toolbar.getChildAt(i).getClass() == ImageButton.class) {
                        imageButton = (ImageButton) toolbar.getChildAt(i);
                        padding -= imageButton.getWidth();
                        break;
                    }
                }

                actionBarSubTitle.setPadding(padding, 0, 0, 0);
                actionBarSubTitlePaddingSet = true;
                ViewTreeObserver obs = layout.getViewTreeObserver();
                obs.removeOnGlobalLayoutListener(this);
            }
        });
    }
}

protected void hideActionBarTitle() {

    if (!initActionBarTitle()) return;

    actionBarTitle.setVisibility(View.GONE);
    if (actionBarSubTitle != null) {
        actionBarSubTitle.setVisibility(View.VISIBLE);
    }
}

protected void showActionBarTitle() {

    if (!initActionBarTitle()) return;

    actionBarTitle.setVisibility(View.VISIBLE);
    if (actionBarSubTitle != null) {
        actionBarSubTitle.setVisibility(View.GONE);
    }
}

แก้ไข (25.08.2016) : สิ่งนี้ใช้ไม่ได้กับการแก้ไข appcompat 24.2.0 (สิงหาคม 2016) หากกิจกรรมของคุณมี "ปุ่มย้อนกลับ" ฉันยื่นรายงานข้อผิดพลาด ( ฉบับ 220899 ) แต่ฉันไม่รู้ว่ามีประโยชน์หรือไม่ (สงสัยจะได้รับการแก้ไขเร็ว ๆ นี้) ในขณะเดียวกันวิธีแก้ปัญหาคือตรวจสอบว่าคลาสของเด็กเท่ากับ AppCompatImageButton.class หรือไม่และทำเช่นเดียวกันเพิ่มความกว้างเพียง 30% เท่านั้น (เช่น appCompatImageButton.getWidth () * 1.3 ก่อนที่จะลบค่านี้ออกจากช่องว่างภายในเดิม):

padding -= appCompatImageButton.getWidth()*1.3;

ในช่วงเวลาเฉลี่ยที่ฉันโยนการตรวจสอบช่องว่าง / ระยะขอบในที่นั่น:

    Class<?> c;
    ImageButton imageButton;
    AppCompatImageButton appCompatImageButton;
    for (int i = 0; i < toolbar.getChildCount(); i++) {
        c = toolbar.getChildAt(i).getClass();
        if (c == AppCompatImageButton.class) {
            appCompatImageButton = (AppCompatImageButton) toolbar.getChildAt(i);
            padding -= appCompatImageButton.getWidth()*1.3;
            padding -= appCompatImageButton.getPaddingLeft();
            padding -= appCompatImageButton.getPaddingRight();
            if (appCompatImageButton.getLayoutParams().getClass() == LinearLayout.LayoutParams.class) {
                padding -= ((LinearLayout.LayoutParams) appCompatImageButton.getLayoutParams()).getMarginEnd();
                padding -= ((LinearLayout.LayoutParams) appCompatImageButton.getLayoutParams()).getMarginStart();
            }
            break;
        }
        else if (c == ImageButton.class) {
            imageButton = (ImageButton) toolbar.getChildAt(i);
            padding -= imageButton.getWidth();
            padding -= imageButton.getPaddingLeft();
            padding -= imageButton.getPaddingRight();
            if (imageButton.getLayoutParams().getClass() == LinearLayout.LayoutParams.class) {
                padding -= ((LinearLayout.LayoutParams) imageButton.getLayoutParams()).getMarginEnd();
                padding -= ((LinearLayout.LayoutParams) imageButton.getLayoutParams()).getMarginStart();
            }
            break;
        }
    }

4

โดยไม่ต้องกำหนดเองดูสามารถตั้งชื่อแถบการดำเนินการไว้ตรงกลาง มันทำงานได้อย่างสมบูรณ์แบบสำหรับลิ้นชักการนำทางเช่นกัน

    int titleId = getResources().getIdentifier("action_bar_title", "id", "android");
    TextView abTitle = (TextView) findViewById(titleId);
    abTitle.setTextColor(getResources().getColor(R.color.white));

    DisplayMetrics metrics = new DisplayMetrics();
    getWindowManager().getDefaultDisplay().getMetrics(metrics);

    abTitle.setGravity(Gravity.CENTER);
    abTitle.setWidth(metrics.widthPixels);
    getActionBar().setTitle("I am center now");

มีความสุขในการเขียนโค้ด ขอบคุณ.


3

หลังจากการวิจัยมากมาย: สิ่งนี้ได้ผลจริง:

 getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
 getActionBar().setCustomView(R.layout.custom_actionbar);
  ActionBar.LayoutParams p = new ActionBar.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
        p.gravity = Gravity.CENTER;

คุณต้องกำหนดโครงร่าง custom_actionbar.xml ซึ่งเป็นไปตามความต้องการของคุณเช่น:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:background="#2e2e2e"
    android:orientation="vertical"
    android:gravity="center"
    android:layout_gravity="center">

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/top_banner"
        android:layout_gravity="center"
        />
</LinearLayout>

ง่ายและได้ผล! quotehd.com/imagequotes/authors39/tmb/…
AndrewBramwell

@AndrewBramwell getActionBar (). setDisplayOptions (ActionBar.DISPLAY_SHOW_CUSTOM); กำลังทิ้งข้อยกเว้นตัวชี้ว่าง
Ruchir Baronia

พวกคุณรู้ไหมว่าฉันจะแก้ไขปัญหานี้ได้อย่างไร?
Ruchir Baronia

3

มันทำงานได้ดี

activity = (AppCompatActivity) getActivity();

activity.getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);

LayoutInflater inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflater.inflate(R.layout.custom_actionbar, null);

ActionBar.LayoutParams p = new ActionBar.LayoutParams(
        ViewGroup.LayoutParams.MATCH_PARENT,
        ViewGroup.LayoutParams.MATCH_PARENT,
        Gravity.CENTER);

((TextView) v.findViewById(R.id.title)).setText(FRAGMENT_TITLE);

activity.getSupportActionBar().setCustomView(v, p);
activity.getSupportActionBar().setDisplayShowTitleEnabled(true);
activity.getSupportActionBar().setDisplayHomeAsUpEnabled(true);

ด้านล่างเค้าโครงของ custom_actionbar:

<?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="match_parent">

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:text="Example"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:ellipsize="end"
        android:maxLines="1"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="@color/colorBlack" />

</RelativeLayout>

3

รหัสที่นี่ใช้งานได้สำหรับฉัน

    // Activity 
 public void setTitle(String title){
    getSupportActionBar().setHomeButtonEnabled(true);
    getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    TextView textView = new TextView(this);
    textView.setText(title);
    textView.setTextSize(20);
    textView.setTypeface(null, Typeface.BOLD);
    textView.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT));
    textView.setGravity(Gravity.CENTER);
    textView.setTextColor(getResources().getColor(R.color.white));
    getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
    getSupportActionBar().setCustomView(textView);
} 

// Fragment
public void setTitle(String title){
    ((AppCompatActivity)getActivity()).getSupportActionBar().setHomeButtonEnabled(true);
    ((AppCompatActivity)getActivity()).getSupportActionBar().setDisplayHomeAsUpEnabled(true);
    TextView textView = new TextView(getActivity());
    textView.setText(title);
    textView.setTextSize(20);
    textView.setTypeface(null, Typeface.BOLD);
    textView.setLayoutParams(new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT));
    textView.setGravity(Gravity.CENTER);
    textView.setTextColor(getResources().getColor(R.color.white));
    ((AppCompatActivity)getActivity()).getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
    ((AppCompatActivity)getActivity()).getSupportActionBar().setCustomView(textView);
}

2

คุณต้องตั้งค่าActionBar.LayoutParams.WRAP_CONTENTและActionBar.DISPLAY_HOME_AS_UP

View customView = LayoutInflater.from(this).inflate(R.layout.actionbar_title, null);
ActionBar.LayoutParams params = new ActionBar.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT,
                ActionBar.LayoutParams.MATCH_PARENT, Gravity.CENTER);

getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_HOME_AS_UP );

"ฉันตั้งค่า ActionBar.LayoutParams ... " - นั่นไม่สมเหตุสมผล นอกจากนี้โปรดจัดรูปแบบรหัสของคุณ
sashoalm

ฮ่า ๆ โปรดอย่าเอาชนะ曲连强ตัวอย่าง setDisplayOptions ของเขาช่วยให้ฉันเพิ่มชื่อที่อยู่ตรงกลางและแสดงปุ่มโฮม
djdance

"R.layout.action_bar_title" คืออะไร ฉันหาไม่เจอ
Jose Manuel Abarca Rodríguez

"R.layout.action_bar_title" คืออะไร อธิบายมัน. ฉันจำเป็นต้องลงทะเบียน xml ที่กำหนดเองนั้นใน manifest.xml หรือไม่
Ajay Kulkarni

2

วิธีที่ดีที่สุดและง่ายที่สุดโดยเฉพาะสำหรับผู้ที่ต้องการดูข้อความด้วยศูนย์แรงโน้มถ่วงโดยไม่มีเค้าโครง xml

AppCompatTextView mTitleTextView = new AppCompatTextView(getApplicationContext());
        mTitleTextView.setSingleLine();
        ActionBar.LayoutParams layoutParams = new ActionBar.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT, ActionBar.LayoutParams.WRAP_CONTENT);
        layoutParams.gravity = Gravity.CENTER;
        actionBar.setCustomView(mTitleTextView, layoutParams);
        actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_HOME_AS_UP);
        mTitleTextView.setText(text);
        mTitleTextView.setTextAppearance(getApplicationContext(), android.R.style.TextAppearance_Medium);

ตรวจสอบธีมแอปของคุณ !!
turbandroid

2

โซลูชัน Kotlin เท่านั้นที่ไม่จำเป็นต้องมีการเปลี่ยนแปลงในเลย์เอาต์ XML:

//Function to call in onResume() of your activity
private fun centerToolbarText() {
    val mTitleTextView = AppCompatTextView(this)
    mTitleTextView.text = title
    mTitleTextView.setSingleLine()//Remove it if you want to allow multiple lines in the toolbar
    mTitleTextView.textSize = 25f
    val layoutParams = android.support.v7.app.ActionBar.LayoutParams(
        ActionBar.LayoutParams.WRAP_CONTENT,
        ActionBar.LayoutParams.WRAP_CONTENT
    )
    layoutParams.gravity = Gravity.CENTER
    supportActionBar?.setCustomView(mTitleTextView,layoutParams)
    supportActionBar?.displayOptions = ActionBar.DISPLAY_SHOW_CUSTOM
}


2

นี่คือโซลูชัน Kotlin + androidx ที่สมบูรณ์ซึ่งสร้างขึ้นจากคำตอบจาก @Stanislas Heili ฉันหวังว่ามันอาจจะมีประโยชน์กับคนอื่น ๆ ในกรณีนี้เมื่อคุณมีกิจกรรมที่โฮสต์แฟรกเมนต์หลายชิ้นโดยมีเพียงแฟรกเมนต์เดียวที่ทำงานพร้อมกัน

ในกิจกรรมของคุณ:

private lateinit var customTitle: AppCompatTextView

override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    // stuff here
    customTitle = createCustomTitleTextView()
    // other stuff here
}

private fun createCustomTitleTextView(): AppCompatTextView {
    val mTitleTextView = AppCompatTextView(this)
    TextViewCompat.setTextAppearance(mTitleTextView, R.style.your_style_or_null);

    val layoutParams = ActionBar.LayoutParams(
        ActionBar.LayoutParams.WRAP_CONTENT,
        ActionBar.LayoutParams.WRAP_CONTENT
    )
    layoutParams.gravity = Gravity.CENTER
    supportActionBar?.setCustomView(mTitleTextView, layoutParams)
    supportActionBar?.displayOptions = ActionBar.DISPLAY_SHOW_CUSTOM

    return mTitleTextView
}

override fun setTitle(title: CharSequence?) {
    customTitle.text = title
}

override fun setTitle(titleId: Int) {
    customTitle.text = getString(titleId)
}

ในชิ้นส่วนของคุณ:

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
    super.onViewCreated(view, savedInstanceState)

    activity?.title = "some title for fragment"
}

1

นี่คือเคล็ดลับสั้น ๆ ในการจัดแนวการกระทำ:

android:label=" YourTitle"

สมมติว่าคุณมี Actionbar Enable คุณสามารถเพิ่มสิ่งนี้ในกิจกรรมของคุณโดยเว้นวรรค (สามารถปรับเปลี่ยนได้) เพื่อวางหัวเรื่องที่กึ่งกลาง

อย่างไรก็ตามนี่เป็นเพียงวิธีการที่ไม่น่าเชื่อถือและไม่น่าเชื่อถือ คุณคงไม่ควรทำอย่างนั้น ดังนั้นสิ่งที่ดีที่สุดที่ต้องทำคือสร้าง ActionBar ที่กำหนดเอง ดังนั้นสิ่งที่คุณต้องทำคือลบ Actionbar เริ่มต้นและใช้สิ่งนี้เพื่อแทนที่เป็น ActionBar

<androidx.constraintlayout.widget.ConstraintLayout
        android:elevation="30dp"
        android:id="@+id/customAction"
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:background="@color/colorOnMain"
        android:orientation="horizontal">
        

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/app_name"
            android:textAllCaps="true"
            android:textColor="#FFF"
            android:textSize="18sp"
            android:textStyle="bold"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </androidx.constraintlayout.widget.ConstraintLayout>

ฉันใช้ Constraint Layout เพื่อจัด textView ไว้ตรงกลางและใช้การยกระดับ 10dp ที่มีความสูง 56dp เพื่อให้ดูเหมือนกับ ActionBar เริ่มต้น


กำลังมองหาอะไรแบบนี้ BINGO!
Anderson Spencer

0

แบบฝึกหัดอื่น ๆ ที่ฉันเคยเห็นจะแทนที่เค้าโครงแถบการกระทำทั้งหมดที่ซ่อน MenuItems ฉันได้ผลเพียงทำตามขั้นตอนต่อไปนี้:

สร้างไฟล์ 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="match_parent" >

    <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:ellipsize="end"
        android:maxLines="1"
        android:text="@string/app_name"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="@android:color/white" />

</RelativeLayout>

และใน classe ให้ทำ:

LayoutInflater inflator = (LayoutInflater) this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflator.inflate(R.layout.action_bar_title, null);

ActionBar.LayoutParams params = new ActionBar.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT, ActionBar.LayoutParams.MATCH_PARENT, Gravity.CENTER);

TextView titleTV = (TextView) v.findViewById(R.id.title);
titleTV.setText("Test");

ไม่ได้ผล - อาจเป็นเพราะฉันมีปุ่มเมนูนำทางปรากฏขึ้น?
ใครสักคน

0

สำหรับผู้ใช้ Kotlin:

ใช้รหัสต่อไปนี้ในกิจกรรมของคุณ:

// Set custom action bar
supportActionBar?.displayOptions = ActionBar.DISPLAY_SHOW_CUSTOM
supportActionBar?.setCustomView(R.layout.action_bar)

// Set title for action bar
val title = findViewById<TextView>(R.id.titleTextView)
title.setText(resources.getText(R.string.app_name))

และเค้าโครง XML / ทรัพยากร:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/titleTextView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Title"
        android:textColor="@color/black"
        android:textSize="18sp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>

0

วิธีแก้ปัญหาของฉันคือแยกส่วนข้อความของแถบเครื่องมือออกจากกันเพื่อกำหนดสไตล์และพูดว่าจัดกึ่งกลางหรือจัดแนวใดก็ได้ สามารถทำได้ใน XML เอง การพายเรือบางประเภทสามารถระบุได้หลังจากทำการคำนวณเมื่อคุณมีการกระทำที่มองเห็นได้เสมอ ฉันได้ย้ายแอตทริบิวต์สองรายการจากแถบเครื่องมือไปยัง TextView ลูก textView นี้สามารถให้ id เพื่อเข้าถึงได้จากแฟรกเมนต์

    <?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <com.google.android.material.appbar.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" >
            <!--android:theme="@style/defaultTitleTheme"
            app:titleTextColor="@color/white"-->
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:paddingStart="@dimen/icon_size"
                android:text="@string/title_home"
                style="@style/defaultTitleTheme"
                tools:ignore="RtlSymmetry" />
        </androidx.appcompat.widget.Toolbar>
    </com.google.android.material.appbar.AppBarLayout>

    <FrameLayout
        android:id="@+id/container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>

-1

รหัสนี้จะไม่ซ่อนปุ่มย้อนกลับเวลาเดียวกันจะจัดตำแหน่งให้อยู่ตรงกลาง

เรียกวิธีนี้ว่า oncreate

centerActionBarTitle();



getSupportActionBar().setDisplayHomeAsUpEnabled(true);
myActionBar.setIcon(new ColorDrawable(Color.TRANSPARENT));

private void centerActionBarTitle() {
    int titleId = 0;
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        titleId = getResources().getIdentifier("action_bar_title", "id", "android");
    } else {
        // This is the id is from your app's generated R class when 
        // ActionBarActivity is used for SupportActionBar
        titleId = R.id.action_bar_title;
    }

    // Final check for non-zero invalid id
    if (titleId > 0) {
        TextView titleTextView = (TextView) findViewById(titleId);
        DisplayMetrics metrics = getResources().getDisplayMetrics();

        // Fetch layout parameters of titleTextView 
        // (LinearLayout.LayoutParams : Info from HierarchyViewer)
        LinearLayout.LayoutParams txvPars = (LayoutParams) titleTextView.getLayoutParams();
        txvPars.gravity = Gravity.CENTER_HORIZONTAL;
        txvPars.width = metrics.widthPixels;
        titleTextView.setLayoutParams(txvPars);
        titleTextView.setGravity(Gravity.CENTER);
    }
}

java.lang.NullPointerException;)
คาน
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.