2016-01-06 55 views
1

我試圖在工具欄中居中放置一個android可繪製XML資源。該工具欄是從android studio 1.5中的抽屜活動「模板」生成的。在工具欄中居中放置Android可繪製XML標誌

例子:

什麼我得到: enter image description here

什麼我的目標爲:

enter image description here

我當前的代碼中心的資源垂直方向而不是水平的,我哈我已經搜索到了一個以資源爲中心的方法,但我找不到解決方案。我也嘗試將資源文件作爲圖像視圖集中在工具欄關聯的XML代碼中,但圖像中心位於工具欄的底部(水平居中但不垂直)。

目前代碼: NavigationDrawerActivity

@Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_navigation_drawer); 
     Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
     setSupportActionBar(toolbar); 
     getSupportActionBar().setTitle(null); 
     toolbar.setLogo(R.drawable.app_logo); 

app_bar_navigation_drawer.xml默認

<android.support.design.widget.AppBarLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

    <android.support.v7.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.support.design.widget.AppBarLayout> 

任何幫助,不勝感激!

回答

1

你可以編輯你的工具欄,因爲它是從ViewGroup得到的。

<android.support.v7.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"> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:contentDescription="@string/logo" 
     android:layout_height="wrap_content" 
     android:layout_gravity="center" 
     android:src="@drawable/ic_launcher"/> 

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

謝謝你的回答! * Facepalms *我不知道我沒有看到這個。謝謝你指出這一點,並原諒我的無知。大聲笑。 –

+0

沒問題,如果有效,您可以接受答案作爲感謝。 – tim

相關問題