这是我的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>
答案 0 :(得分:2)
因此,最简单的方法是在Android Studio中创建一个新的空活动,确保它空而不是空白!
此模板将构建所需的所有代码:
AppBarLayout
, Toolbar
和CoordinatorLayout
创建布局。所以......你只需要在自动创建的TextView
中添加图标和Toolbar
(在 layout.xml中} strong>)如以下代码段中所示:
<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>
下面是一张结果为的图片: