0

我正在尝试学习片段


我正在使用本教程作为参考

我正在尝试从教程中执行一个简单的程序

MainActivity.java

package com.example.fragmentsfirstproject;

import android.os.Bundle;
import android.app.Activity;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentStatePagerAdapter;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;


public class MainActivity extends Fragment implements OnClickListener {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.activity_main,
                                     container, false);

        Button nextButton = (Button) view.findViewById(R.id.button1);
        nextButton.setOnClickListener(this);

        return view;
    }

    @Override
    public void onClick(DialogInterface dialog, int which) {
        // TODO Auto-generated method stub

    }

}

activity_main.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="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="54dp"
        android:text="@string/hello_world" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="134dp"
        android:text="Click Me !" />

</RelativeLayout>

显然在行::

nextButton.setOnClickListener(this);

我收到一个错误

The method setOnClickListener(View.OnClickListener) in the type View is not applicable for the arguments (MainActivity)
  • 为什么会出现这个错误,我不能用OnclickListenerfragments

  • 我该如何纠正自己

请轻松回答。我是碎片新手!

4

4 回答 4

1

您正在导入错误的 onClickListener import android.content.DialogInterface.OnClickListener;用于对话框..

尝试导入..import android.view.View.OnClickListener;并将其设置为按钮..

并实施该onClick()方法..

于 2013-10-30T05:31:15.223 回答
1

除了简单的单击侦听器之外,您还添加了对话框单击侦听器。

Button为您的Click 侦听器实现如下方法并导入import android.view.View.OnClickListener;

  @Override
public void onClick(View v) {
    // TODO Auto-generated method stub

}
于 2013-10-30T05:31:27.893 回答
1

尝试导入..import android.view.View.OnClickListener;

并实施

  @Override
  public void onClick(View v) {
      // TODO Auto-generated method stub

   }
于 2013-10-30T05:33:35.317 回答
1

删除以下 IMPORT 语句..

import android.content.DialogInterface.OnClickListener;

然后在 ECLIPSE 中按 Ctrl+Shift+o

移除已实现的 onClick() 函数。

并再次覆盖它。

你会得到正确的功能。

于 2013-10-30T05:34:25.663 回答