无法在Tabbed Activity中实现onClick

时间:2017-11-24 03:39:11

标签: android android-viewpager android-fragmentactivity android-tabbed-activity tabbed-view

我正在使用带有3个标签的ViewPager进行选项卡式活动。 问题是:标签不识别任何onClick按钮。 例如,这是我的 Tab3.java

package com.abc;

import android.support.design.widget.FloatingActionButton;
import android.support.design.widget.Snackbar;
import android.support.v4.app.Fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Toast;


public class Tab3 extends Fragment {
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.tab3, container, false);

        return v;
    }
    public void btnchk(){    //Mouse hover says that this method is never used
        Toast.makeText(getContext(),"Btn pressed ",Toast.LENGTH_SHORT).show();

    }
    }

这是 Tab3.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent" android:layout_height="match_parent">

    <Button
        android:onClick="btnchk"
        android:id="@+id/btn_service"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView3"
        android:layout_marginEnd="9dp"
        android:layout_marginTop="38dp"
        android:layout_toStartOf="@+id/fab"
        android:text="Button" />
</RelativeLayout>

那么,它可能出现什么问题? 注意: 我可以通过使用btn.onClickListener来实现buttonClick,但问题是,还有许多其他问题,如“无法解析getText()”等。我认为所有问题都有一个解决方案?也许

1 个答案:

答案 0 :(得分:-1)

您应该在Activity上声明方法,而不是片段。

// Activity
public class MyActivity extends Activity
{
    Fragment myFragment;
    // Do something to instance myFragment.
    // ....

    public void btnchk(View v) 
    {
        myFragment.btnchk(v);
    }
}

您可以查看此链接How to handle button clicks using the XML onClick within Fragments 以获取更多详细信息。