Androidstudio Onclicklistener() error

Asked

Viewed 587 times

0

I don’t know how to fix the Onclicklistener() error in the java class below, it just has to fix it

Here the full code to download: https://www.sendspace.com/file/4sgv14

Error: erro

classe  OlaCalendario.java
package com.example.brainiac.olacalendario;

import android.annotation.TargetApi;
import android.app.DatePickerDialog;
import android.app.Dialog;
import android.content.DialogInterface;

import android.content.DialogInterface.OnClickListener;
import android.icu.util.Calendar;
import android.os.Build;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.DatePicker;
import android.widget.TextView;
public class OlaCalendarioActivity extends AppCompatActivity {
    private TextView mDateDisplay;
    private Button mPickDate;
    private int mYear;
    private int mMonth;
    private int mDay;

static final int DATE_DIALOG_ID = 0;




protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.ola_calendario);

    mDateDisplay = (TextView) findViewById(R.id.dateDisplay);
    mPickDate = (Button) findViewById(R.id.pickDate);

    mPickDate.setOnClickListener(new OnClickListener() {

        public void onClick(View v) {
            showDialog(DATE_DIALOG_ID);
        }
    });

    final Calendar c = Calendar.getInstance();

    mYear = c.get(Calendar.YEAR);
    mMonth = c.get(Calendar.MONTH);
    mDay = c.get(Calendar.DAY_OF_MONTH);

    updateDisplay();
}

private void updateDisplay() {
    mDateDisplay.setText(
            new StringBuilder()
            // Month is 0 based so add 1
             .append(mMonth + 1).append("-")
             .append(mDay + 1).append("-")
             .append(mYear + 1).append(" "));
}

private DatePickerDialog.OnDateSetListener mDateSetListener=
        new DatePickerDialog.OnDateSetListener(){

            @Override
            public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) {
                mYear = year;
                mMonth = month;
                mDay = dayOfMonth;
                updateDisplay();
            }
        };

@Override
protected Dialog onCreateDialog(int id){
    switch (id){
        case DATE_DIALOG_ID:
            return new DatePickerDialog(this,mDateSetListener, mYear, mMonth, mDay);
    }
    return null;

    }
}

filing cabinet ola_calendario.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    >
    <TextView
        android:id="@+id/dateDisplay"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text=""
        />
    <Button
        android:id="@+id/pickDate"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Altere a Data "
        />
</LinearLayout>`

3 answers

0

The on click method needs to be implemented with Override:

@Override
public void onClick(View v) {
    onAcao();
}

0

Solved I used Java Calendar instead of Android

import java.util.Calendar;

0

It seems that this onClickListener is deriving from a class that needs to implement something abstract, so just add the View class before the onClickListener to call it from that class, as follows:

    mPickDate.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {
           showDialog(DATE_DIALOG_ID);
        }
    });

I think it’ll work.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.