gpt4 book ai didi

android - 协调器布局中的按钮单击不起作用

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:10:39 27 4
gpt4 key购买 nike

我在相对布局中放置了一个坐标布局。协调器布局由两个按钮组成。我设计了通常的onclick函数,但是按钮好像没有被点击。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/relativeLayoutMain"
android:layout_margin="0dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.example.shaby.payshare.WorkPageOneFragment">

<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/add1"
android:layout_gravity="bottom|right"
android:text="ADDBene"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/add2"
android:layout_gravity="bottom|left"
android:text="AddItem"/>
</android.support.design.widget.CoordinatorLayout>



</RelativeLayout>

Java 文件部分为

buttonAddB= (Button)view.findViewById(R.id.add1);


buttonAddB.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getContext(), "Hi", Toast.LENGTH_LONG).show();


}
});

问题是 1) 我做的事情是否正确? 2)如果是那么为什么按钮不起作用?帮助。

最佳答案

两个想法:

1) 检查 buttonAddB= (Button)view.findViewById(R.id.add1) 中的 view 是什么,它指的是你认为的指的是;

2) 你没有说失败时会发生什么,所以我猜这是一个 NPE。尝试将 Toast.makeText(getContext(), "Hi", Toast.LENGTH_LONG).show() 更改为 Toast.makeText(v.getContext(), "Hi", Toast.LENGTH_LONG ).show() 看看是否可行。 getContext() 可能返回 null。

如果这些不能解决问题,请发布更多有关失败的信息。

关于android - 协调器布局中的按钮单击不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42673746/

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