toolbar
の前にbutton
を配置しましたが、問題はそれがユーザーに表示されないことです。 ツールバーにbutton
が表示されるようにするか、ツールバーに配置する必要があります。ここで ボタンはandroid.support.v7.widget.Toolbarには表示されません
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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"
android:id="@+id/hello"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/holo_blue_dark"
tools:context="com.hackerinside.jaisonjoseph.radioplanet.Intro">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:foregroundGravity="center"
android:src="@drawable/ione" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:background="@android:color/holo_blue_dark"
android:elevation="16dp"
android:minHeight="?attr/actionBarSize"
android:theme="?attr/actionBarTheme" />
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:elevation="16dp"
android:text="Button" />
ツールバーに表示したい場合は、ツールバーの外側ではなくツールバーに配置してください。 – tyczj
メニュー項目を代わりに使用 – g7pro
ツールバーが下部にある理由それはあなたが必要とするものですか? – g7pro