如何使在片段点击监听器按钮

问题描述 投票:0回答:1

我想设置一个onClickListener上的按钮,但我面临的一个问题。

我不能得到我需要的是点击按钮后context。 我试图通过view但没有工作,这是行不通的,但也不会引发错误。

在片段中的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<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="match_parent">

    <Button
        android:id="@+id/test"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="go to test" />
</RelativeLayout>

Java的代码片段:

import android.content.Intent;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.Toast;
import java.util.Objects;


public class Homefragment extends android.support.v4.app.Fragment {

Button test;

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

        View view = inflater.inflate(R.layout.fragment_home, container, false);

       test = (Button) view.findViewById(R.id.test);

       test.setOnClickListener(new View.OnClickListener() {
           @Override
           public void onClick(View v) {
               System.out.println("Clicked go to test");
               Toast.makeText(getContext(), "clicked", Toast.LENGTH_SHORT).show();
               Intent gotest;
               gotest = new Intent(getActivity().getApplicationContext(),testing.class);
               startActivity(gotest);

           }
       });

        return inflater.inflate(R.layout.fragment_home,null);
    }
}

我logcat中没有给出错误,我用的打印命令按钮被按下,但打印不工作,像如果按钮没有点击时。

android android-layout android-fragments
1个回答
0
投票

使用该回报您的观点。

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

   View view = inflater.inflate(R.layout.fragment_home, container, false);

   test = (Button) view.findViewById(R.id.test);

   test.setOnClickListener(new View.OnClickListener() {
       @Override
       public void onClick(View v) {
           System.out.println("Clicked go to test");
           Toast.makeText(getContext(), "clicked", Toast.LENGTH_SHORT).show();
           Intent gotest;
           gotest = new Intent(getActivity().getApplicationContext(),testing.class);
           startActivity(gotest);

       }
   });
   return view;
}
© www.soinside.com 2019 - 2024. All rights reserved.