如何在片段中正确添加按钮列表器

时间:2017-11-09 07:52:07

标签: android android-fragments button

我编写代码,看起来不错。 当我写 setOnClickListener(this)时,我不知道什么是我得到错误的共鸣 我想要的就是在片段中创建按钮。

“错误:(25,78)错误:不兼容的类型:void无法转换为Button” “错误:任务执行失败':android:compileDebugJava'。

  

编译失败;有关详细信息,请参阅编译器错误输出。“

非常感谢您的帮助

源代码:

    import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.Toast;

import com.popthejam.game.android.R;

public class Wellcome extends Fragment implements View.OnClickListener {

    private Button btnLOGIN ;

    public Wellcome() {
        // Required empty public constructor
    }

    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        View view = inflater.inflate(R.layout.fragment_wellcome,container,false);
        btnLOGIN = (Button) view.findViewById(R.id.btnLogin).setOnClickListener(this);

        return view;
    }

    public void onClick(View view) {
        Toast.makeText(getActivity(), "LOGIN BUTTON PRESS", Toast.LENGTH_SHORT).show();

    }
}

----

<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:background="@drawable/popthejam"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="fragment.Wellcome">
<TextView
    android:gravity="center"
    android:textSize="@dimen/profile_entry_text_size"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:text="@string/welcome_to_app" />
    <Button
        android:id="@+id/btnLogin"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:backgroundTint="@android:color/holo_orange_dark"
        android:text="Login"
         />
</FrameLayout>

3 个答案:

答案 0 :(得分:1)

错误在于您尝试将def text_to_date(date_text): if not date_text: raise ValueError('Empty Date') month = int(date_text[0:2]) day = int(date_text[3:5]) year = int(date_text[6:10]) date_time = datetime.date(year,month,day) return date_time (void)的结果分配给按钮变量。

所以改变这个

setOnClickListener()

到这个

btnLOGIN = (Button) view.findViewById(R.id.btnLogin).setOnClickListener(this);

答案 1 :(得分:1)

(Button) view.findViewById(R.id.btnLogin).setOnClickListener(this);

上面的代码返回一个void函数。所以:

btnLOGIN = (Button) view.findViewById(R.id.btnLogin).setOnClickListener(this); 

无法正常工作,因为您通过该功能注册了一个按钮。

让我们喜欢@Headcracker suggess

答案 2 :(得分:0)

使用此

btnLOGIN = (Button) view.findViewById(R.id.btnLogin);
btnLOGIN.setOnClickListener(this);

在片段类中实现重写的onClick

 @Override
    public void onClick(View view) {
 switch (v.getId()) {

            case R.id.btnLogin:
 Toast.makeText(getActivity(), "LOGIN BUTTON PRESS", Toast.LENGTH_SHORT).show();
break;
}


        }