我正在声明按钮,在底部我宣布图像,按钮点击不起作用

时间:2013-11-13 11:21:42

标签: android button imageview

//我正在声明按钮,但是我正在声明图像,当我向下拖动图像时,按钮点击不起作用,按钮不会出现forground。我可以在同一地点声明按钮和图像。 / p>

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/LLayout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dip"
        android:text="Button" />

    <AbsoluteLayout
        android:id="@+id/alTop"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/ivImage"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="matrix"
            android:src="@drawable/dd" />
    </AbsoluteLayout>

</FrameLayout>

1 个答案:

答案 0 :(得分:0)

试试这可能会有所帮助......

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dip"
    android:background="@drawable/dd"
    android:text="Button" />