Я хочу изменить название Actionbar на любой текст программно. Я использую AppCompat v7 Вот мой код:Как изменить название панели действий в библиотеке appcompat v7
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View actionBarview = inflater.inflate(R.layout.action_bar, null);
ActionBar actioBar = getSupportActionBar();
actioBar.setNavigationMode(ActionBar.NAVIGATION_MODE_STANDARD);
actioBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
actioBar.setCustomView(actionBarview, new ActionBar.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
final DrawerLayout drowerlayout = (DrawerLayout) findViewById(R.id.drawerlayout);
Я пробовал: actioBar.setTitle ("MyText");
Но ничего не произошло.
Вот мой заказ 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="48dp"
android:layout_gravity="right"
android:background="#bfbfbf"
android:gravity="right"
android:orientation="horizontal" >
<TextView
android:id="@+id/TextView01"
android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_gravity="center" android:layout_weight="0.1"/>
<TextView
android:id="@+id/txtBName"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_weight="1"
android:gravity="center"
android:text="......"
android:textColor="#000" />
<TextView
android:id="@+id/textView2"
android:layout_width="0dp"
android:layout_height="wrap_content" android:layout_gravity="center" android:layout_weight="0.1"/>
<Button
android:id="@+id/btnMenu"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:text="menu" />
.
спасибо, я обновил вопрос и добавил коды xml. Я устанавливаю идентификатор textview в txtBName, это то, что вы имеете в виду? – Alfi
И отлично сработало! Спасибо! – Alfi
в любое время bro, просто следите за стандартом Google при использовании пользовательских представлений для actionBar, также применяйте практику использования панелей инструментов вместо actionBar как последней замены для actionBar –