2017-07-04 11 views
-4

アンドロイドのメニュー項目を削除すると、ツールバーの画像が中央に揃っていないのはなぜですか?
メニューアイテムを非表示にした場合、タイトルは右に移動しました。ナビゲーションアイコンとタイトルの間にスペースが追加されています。タイトルイメージアライメントツールバーのアライメント

私のコード

<android.support.v7.widget.Toolbar 
android:id="@+id/toolbar" 
android:layout_width="match_parent" 
android:layout_height="?attr/actionBarSize" 
app:contentInsetLeft="0dp" 
app:contentInsetStart="0dp" 
app:contentInsetRight="0dp" 
app:contentInsetStartWithNavigation="0dp" 
android:background="#FFF"> 
<LinearLayout 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
> 
<ImageView 
android:layout_width="match_parent" 
android:layout_height="wrap_content" 
android:layout_marginTop="5dp" 
android:id="@+id/pg_title" 
android:layout_centerHorizontal="true" 
android:src="@drawable/logo" 
/> 
</LinearLayout> 
</android.support.v7.widget.Toolbar> 
+0

の場合は私に尋ねますあなたはより良い方法で後になります。 –

答えて

1

がこのツールバーを追加してみてください、あなたのレイアウトXMLファイル内

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

     <include layout="@layout/actionbar_layout" /> 

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

この

<?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="match_parent" 
android:gravity="center" 
android:orientation="horizontal"> 

<ImageView 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:src="@drawable/ic_bike" /> 
</LinearLayout> 
のようなあなたのツールバーのための actionbar_layout新しい を作成あなたの活動のファイルになりました

は、単にコードの下に

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
    setSupportActionBar(toolbar); 
    getSupportActionBar().setTitle(""); 

を追加し、我々はあなたが何をしているかを見ることができるようにここにコードを入れて、助けることができるしてください任意のクエリ

+0

私はまたurコードのようなツールバーを追加します。私は最初の断片のためのツールバーのメニュー項目を使用するためにフラグを使用しているので、タイトルが正しく中央揃えされます。メニュー項目を表示しないようにするかどうかを設定します。タイトルは中心を揃えていません。 – Tamil

関連する問題