2017-03-28 13 views
0

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

+0

ツールバーに表示したい場合は、ツールバーの外側ではなくツールバーに配置してください。 – tyczj

+0

メニュー項目を代わりに使用 – g7pro

+0

ツールバーが下部にある理由それはあなたが必要とするものですか? – g7pro

答えて

2

ボタンがandroid.support.v7.widget.Toolbar

に見えないツールバーのレイアウト内のボタンを配置している

<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:elevation="16dp" 
    android:text="Button" /> 
</android.support.v7.widget.Toolbar> 
  • あなたはまた、ツールバー上のボタンのXMLタグを記述し、単にmenu.xml
0

によってメニュー項目を使用して、ツールバー内のボタンを作成することができます。

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

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

<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" /> 
関連する問題