web-dev-qa-db-ja.com

androidタイトルはツールバーに表示されません

私はフラグメントファイルで非常に多くのアクティビティで使用するxmlを持っていますが、私の問題はツールバーに必要なテキストを表示できないことですだから私はそのようにしなければなりませんでした。

私のxml:

<RelativeLayout xmlns:Android="http://schemas.Android.com/apk/res/Android"
    xmlns:tools="http://schemas.Android.com/tools"
    Android:id="@+id/frame_container"
    Android:layout_width="match_parent"
    Android:layout_height="match_parent"
    tools:context=".StatusActivity"
    Android:orientation="vertical" >

    <Android.support.v7.widget.Toolbar
        Android:id="@+id/toolbar"
        style="@style/ToolBarStyle"
        Android:layout_width="match_parent"
        Android:layout_height="wrap_content"
        Android:background="?attr/colorPrimary"
        Android:minHeight="@dimen/abc_action_bar_default_height_material" />

</RelativeLayout>

私の活動の一つ:

public class GroupChatActivity extends ActionBarActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_base_layout);

        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
         setSupportActionBar(toolbar);
         getSupportActionBar().setDisplayShowHomeEnabled(true);

         ActionBar actionBar = getSupportActionBar();
         actionBar.setTitle("Groups history");

        Aniways.init(this);

        if(savedInstanceState == null)
        {
            FragmentManager manager = getSupportFragmentManager();

            Fragment fragment = GroupChatFragment.newInstance(getIntent().getIntExtra("uid", 0));
            manager.beginTransaction().add(R.id.frame_container, fragment).commit();
        }
    }
}

ご覧のとおり、タイトルをアクションバーに設定しようとしましたが、機能しません。

28
getSupportActionBar().setDisplayShowTitleEnabled(true);
39
massaimara98

設定、

app:title="@string/my_title"

android.support.v7.widget.Toolbarの宣言内で、ツールバーにタイトルをハードコーディングします。

プログラムでタイトルを設定するには、

Toolbar toolbar = (Toolbar) findViewById(R.id.my_toolbar);
toolbar.setTitle("my title");
setSupportActionBar(toolbar);

アクティビティクラスで。

20
Chad Mx

これを試してください..このメソッドは私のために働く.. !!それが誰かを助けることを願っています。!!

<Android.support.v7.widget.Toolbar  
 xmlns:app="http://schemas.Android.com/apk/res-auto"  
 Android:id="@+id/my_awesome_toolbar"  
 Android:layout_width="match_parent"  
 Android:layout_height="wrap_content"  
 Android:background="?attr/colorPrimary"  
 Android:minHeight="?attr/actionBarSize"  
 app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" >  

<TextView  
   Android:id="@+id/toolbar_title"  
   Android:layout_width="wrap_content"  
   Android:layout_height="wrap_content"  
   Android:layout_gravity="center"  
   Android:singleLine="true"  
   Android:text="Toolbar Title"  
   Android:textColor="@Android:color/white"  
   Android:textSize="18sp"  
   Android:textStyle="bold" />  

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

[〜#〜] edit [〜#〜]

これも使用できます。

setSupportActionBar(toolbar);
if (getSupportActionBar() != null)
      getSupportActionBar().setTitle("Toolbar title");
8

getActionBar().setTitle("Groups History");

またはAppCompatライブラリを使用している場合;

getSupportActionBar().setTitle("Groups History");

1
Kyle Mew

toolbar.setTitle('Groups history');を試してください

1
csmurphy84

カスタムアクションバーを作成しました。

このコードを使用したiguepardos_action_bar.xmlのレイアウト

<?xml version="1.0" encoding="utf-8"?>
<Android.support.v7.widget.Toolbar
xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:local="http://schemas.Android.com/apk/res-auto"
Android:id="@+id/toolbar"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:background="@color/blanco"
Android:minHeight="?attr/actionBarSize">

    <TextView
    Android:id="@+id/toolbar_title"
    Android:layout_width="wrap_content"
    Android:layout_height="wrap_content"
    Android:layout_gravity="left"
    Android:singleLine="true"
    Android:text="Toolbar Title"
    Android:textColor="@color/naranja"
    Android:textSize="18sp" />

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

私のクラスでは、AppCompatActivityを拡張しました。

protected void onCreate(Bundle savedInstanceState) {
.... 
....

getSupportActionBar().setDisplayShowCustomEnabled(true); // is for specify use custom bar 
getSupportActionBar().setCustomView(R.layout.iguepardos_action_bar);  // my custom layout
getSupportActionBar().setDisplayHomeAsUpEnabled(true); // Button for come back

View mCustomView = getSupportActionBar().getCustomView(); // Set the view
TextView TitleToolBar = (TextView) mCustomView.findViewById(R.id.toolbar_title); // find title control
TitleToolBar.setText("The Title Show"); // Set the Title

}
0
A. Senna