0

アプリケーションにイメージボタンを追加しています。これらの 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>
4

2 に答える 2

0

次のことを試すことができます。

<ImageButton
    android:contentDescription="@string/test_str"
    android:id="@+id/listener"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@android:drawable/ic_dialog_info"
/>
于 2013-09-11T12:38:51.697 に答える