gpt4 book ai didi

java - Android:onClick 事件监听器在线性布局上不起作用

转载 作者:行者123 更新时间:2023-11-30 08:48:52 26 4
gpt4 key购买 nike

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

这是我的 RelativeLayout 函数:

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>

最佳答案

尝试将下面的额外行添加到您的Relative Layout 描述中:

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

关于java - Android:onClick 事件监听器在线性布局上不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31713163/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com