0

我正在向我的应用程序添加一个图像按钮,我正在尝试使用这两种方式,但都不起作用:

<ImageButton  
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" />

第二种方式:

<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 回答
0

而不是通过手动编码来定义组件。尝试通过 GUI 使用它。它会自动为任何组件添加必需的属性,并向您显示布局中的错误。希望你明白我的意思。
如下所示:如果您通过 GUI 制作,这是一个默认按钮

 <Button
        android:id="@+id/button1" // mandatory you just miss it
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/helloworld"
        android:layout_below="@+id/helloworld"
        android:layout_marginLeft="46dp"
        android:layout_marginTop="100dp"
        android:text="Button" />
于 2013-09-11T12:42:41.910 回答