如何将我的徽标放在Android操作栏的中心?

时间:2016-02-03 01:04:35

标签: android android-layout

这是我的menu-main.xml。

代码下面的图片显示了我想在我的应用上放置徽标的位置。

<menu 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"
    tools:context="com.example.akam.billettogram.MainActivity">**strong text**
    <item
        android:id="@+id/logo"
        app:showAsAction="always"
        android:title=""
        android:layout_gravity="center"
        android:icon="@drawable/logo"/>
    <item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:title="@string/action_settings"
        app:showAsAction="never"/>
</menu>

Position that I want to put my logo in.

1 个答案:

答案 0 :(得分:2)

因此,最简单的方法是在Android Studio中创建一个新的活动,确保它而不是空白

此模板将构建所需的所有代码:

  • 它会创建 Activity.java
  • 使用AppBarLayout Toolbar CoordinatorLayout创建布局。
  • 它会在 res / values 中创建所需的样式
  • 它会在Manifest(NoActionBar)中使用正确的样式设置Activity。

所以......你只需要在自动创建的TextView中添加图标Toolbar(在 layout.xml中)如以下代码段中所示:

<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">

    <LinearLayout
        android:gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <ImageView
            android:src="@android:drawable/btn_star_big_off"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <TextView
            android:text="Hello world"
            android:textColor="@android:color/white"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </LinearLayout>

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

下面是一张结果为的图片:

enter image description here