アプリケーションにイメージボタンを追加しています。これらの 2 つの方法を使用しようとしていますが、どちらも機能していません。
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
そして2番目の方法:
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</ImageButton>
それは私にこのエラーを与えます
これは私のxmlファイルです:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFCCCCCC"
android:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="50dp"
android:layout_gravity="center"
android:orientation="horizontal" >
<ImageButton
android:id="@+id/new_btn"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:contentDescription="@string/start_new"
android:src="@drawable/new_pic"/>
</LinearLayout>
</LinearLayout>