Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/350.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/191.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 安卓:onClick事件监听器不';不要在线性布局上工作_Java_Android_Xml_Android Layout - Fatal编程技术网

Java 安卓:onClick事件监听器不';不要在线性布局上工作

Java 安卓:onClick事件监听器不';不要在线性布局上工作,java,android,xml,android-layout,Java,Android,Xml,Android Layout,我正在尝试为整个布局实现onclick,但它不起作用 这是我的亲属约会的功能: public void updateRange(View v) { System.out.println("Hello!"); } 这是我的xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" a

我正在尝试为整个布局实现onclick,但它不起作用

这是我的亲属约会的功能:

public void updateRange(View v)
{
    System.out.println("Hello!");
}
这是我的xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context=".MainActivity"
    android:background="#ffffffff"
    android:id="@+id/xasdf"
    android:onClick="updateRange">

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/toptab"
        android:orientation="horizontal">

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Settings"
            android:fontFamily="monospace"
            android:textAllCaps="false"
            android:layout_weight="0.333333"
            android:id="@+id/settingsButton"
            android:background="#fffdb64b" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Solutions"
            android:fontFamily="monospace"
            android:textAllCaps="false"
            android:layout_weight="0.333333"
            android:id="@+id/solutionsButton"
            android:background="#fffdb64b" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Mode"
            android:fontFamily="monospace"
            android:textAllCaps="false"
            android:layout_weight="0.333333"
            android:id="@+id/modeButton"
            android:background="#fffdb64b" />

    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:gravity="center_vertical"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/chartlayout"
        android:layout_below="@+id/toptab"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true">

    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:weightSum="1"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true">

        <EditText
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/textView"
            android:layout_weight="0.5"
            android:background="#ffffffff"
            android:fontFamily="monospace"
            android:hint="y = ..." />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Graph"
            android:fontFamily="monospace"
            android:textAllCaps="false"
            android:layout_weight="0.25"
            android:id="@+id/button"
            android:background="#ffd0d0d0"
            android:onClick="drawGraph" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Table"
            android:fontFamily="monospace"
            android:layout_weight="0.25"
            android:textAllCaps="false"
            android:id="@+id/button2"
            android:background="#ffd0d0d0" />
    </LinearLayout>

</RelativeLayout>

尝试将下面的额外行添加到您的
相对布局中
说明:

...
android:onClick="updateRange"
android:clickable="true">

@亨利:是的。我只是在一个相当复杂的相对布局上测试了它。那你一定还有别的问题。