背景デザインを使用してツールバーを作成する方法を教えてください。アンドロイドツールバー:背景に画像を含むツールバーとメニュー項目を表示する方法
私は次のコードをしようとしています:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/actionBar"
android:layout_width="match_parent"
android:layout_height="200dp"
app:contentInsetEnd="0dp"
app:contentInsetStart="0dp"
android:minHeight="200dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageViewplaces"
android:src="@drawable/puri"
android:layout_gravity="center"/>
</android.support.v7.widget.Toolbar>
と私は何を取得していますが、次のとおりです。
'src'ではなく 'background'属性を使用していますか? –
私は試しました。それは同じだ。イメージはアンカーツールバー領域をカバーしません。 –
ImageViewのツールバーとして 'android:layout_width =" match_parent "を' match_parent'にすると、ツールバーの上にイメージを適用できます。 ImageViewの幅を 'match_parent'に変更する必要があります。 'wrap_content'はImageViewで提供されている画像に従って画像の幅と高さを表示します –