2010-02-27 14 views
9

Tengo un problema que no sé cómo resolver ... Tengo una actividad, cuando hago clic en un elemento en particular del menú vinculado a esta actividad, se muestra un diálogo y se usa para agregar un artículo. Este artículo tiene una fecha y una hora, pero no logro tener un DatePicker y TimePicker dentro de este cuadro de diálogo. También intento pasar la actividad al cuadro de diálogo y usar esta para mostrar el marcador de fecha, pero eso no funciona. Antes de esto, manejé la creación de dichos artículos dentro de otra actividad. En este caso, funciona bien. Pero encontré el Diálogo más sexy ... :-) ¿Alguna idea? Hope No estoy demasiado confundido ..... Muchas gracias, LucAndroid: use un marcador de fecha y un marcador de tiempo dentro de un cuadro de diálogo

edito este post para compartir el código que tengo problemas con.

Tengo una clase de diálogo básica que intentó utilizar DatePicker y TimePicker. Básicamente, Eclipse se queja de que:

  • la showDialog es indefinido para View.OnClickListener()
  • método onCreateDialog: El método onCreateDialog (int) de tipo EventCreateDialog debe anular o implementar un método supertipo
  • DatePickerDialog es indefinido (ya que esto no es una actividad)

Todo esto funciona desde dentro de una actividad pero no puedo tenerlo funcionando desde un cuadro de diálogo.

Muchas gracias, Luc

 
package com.android.myapp; 
import ... 
public class TestDialog extends Dialog implements android.view.View.OnClickListener{ 
private TextView mDateDisplay; 
private Button mPickDate; 
private Button mPickTime; 
private int mYear; 
private int mMonth; 
private int mDay; 
private int mHour; 
private int mMinute; 
static final int DATE_DIALOG_ID = 0; 
static final int TIME_DIALOG_ID = 1; 

private Button mButton_ok; 

private Button mButton_ko; 

private ReadyListener readyListener; 

private Context context;  

    public TestDialog(Context context, ReadyListener readyListener) { 
     super(context); 
     this.context = context; 
     this.readyListener = readyListener; 
    } 

    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.event_create);   

     mButton_ok = (Button)findViewById(R.id.button_ok); 
     mButton_ko = (Button)findViewById(R.id.button_ko); 

     // Add listeners 
     mButton_ok.setOnClickListener(this); 
     mButton_ko.setOnClickListener(this); 

      mDateDisplay = (TextView) findViewById(R.id.dateDisplay); 
      mPickDate = (Button) findViewById(R.id.pickDate); 
      mPickTime = (Button) findViewById(R.id.pickTime); 
      // add a click listener to the button 
      mPickDate.setOnClickListener(new View.OnClickListener() { 
       public void onClick(View v) { showDialog(DATE_DIALOG_ID); } 
      }); 
      mPickTime.setOnClickListener(new View.OnClickListener() { 
       public void onClick(View v) { showDialog(TIME_DIALOG_ID); } 
      }); 
      // get the current date 
      final Calendar c = Calendar.getInstance(); 
      mYear = c.get(Calendar.YEAR); 
      mMonth = c.get(Calendar.MONTH); 
      mDay = c.get(Calendar.DAY_OF_MONTH); 
      mHour = c.get(Calendar.HOUR_OF_DAY); 
      mMinute = c.get(Calendar.MINUTE); 
      updateDisplay(); 
    } 

     @Override 
     protected Dialog onCreateDialog(int id) { 
      switch (id) { 
      case DATE_DIALOG_ID: 
       return new DatePickerDialog(this, mDateSetListener, mYear, mMonth, mDay); 
      case TIME_DIALOG_ID: 
       return new TimePickerDialog(this, mTimeSetListener, mHour, mMinute, false); 
      } 
      return null; 
     } 
     private void updateDisplay() { 
      mDateDisplay.setText(
       new StringBuilder() 
        // Month is 0 based so add 1 
        .append(mMonth + 1).append("-") 
        .append(mDay).append("-") 
        .append(mYear).append(" ") 
        .append(pad(mHour)).append(":") 
        .append(pad(mMinute))); 
     } 

     // the callback received when the user "sets" the date in the dialog 
     private DatePickerDialog.OnDateSetListener mDateSetListener = 
      new DatePickerDialog.OnDateSetListener() { 
       public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) { 
        mYear = year; 
        mMonth = monthOfYear; 
        mDay = dayOfMonth; 
        updateDisplay(); 
       } 
     }; 

     private TimePickerDialog.OnTimeSetListener mTimeSetListener = 
      new TimePickerDialog.OnTimeSetListener() { 
       public void onTimeSet(TimePicker view, int hourOfDay, int minute) { 
        mHour = hourOfDay; 
        mMinute = minute; 
        updateDisplay(); 
       } 
     }; 

     private static String pad(int c) { 
      if (c >= 10) 
       return String.valueOf(c); 
      else 
       return "0" + String.valueOf(c); 
     } 

    public interface ReadyListener { 
     public void ready(MyObj myObj); 
    } 

    @Override 
     public void onClick(View v) { 
     if (v == mButton_ok) { 
      // Do stuff.... 

     } 


     if(v == mButton_ko){ 
      dismiss(); 
     } 
    } 
} 

+0

Tal vez usted podría compartir el código que no parece estar funcionando?He usado DatePicker y TimePicker en los cuadros de diálogo antes sin problemas. –

+0

Muchas gracias, y lo siento (no vi que recibiera una respuesta). Compartiré el código, pero solo una pregunta, ¿qué contexto proporciona a DatePicker y TimePicker cuando los llama desde un cuadro de diálogo? muchas gracias, Luc – Luc

+0

¿Podría compartir cómo se resolvió esto? Tengo el mismo problema. ¿Cómo mostramos un TimePicker (u otro cuadro de diálogo) al hacer clic en un botón dentro de un cuadro de diálogo personalizado? es decir, un diálogo desde otro diálogo? –

Respuesta

0

esto debería funcionar:

mPickDate.setOnClickListener(new View.OnClickListener() { 
       public void onClick(View v) { context.showDialog(DATE_DIALOG_ID); } 
      }); 

onCreateDialog sólo puede ser llamado desde dentro de una actividad

+0

Hola, probé esto y no funcionó. –

+1

[Pickers] (http://developer.android.com/guide/topics/ui/controls/pickers.html) –

2

PickerViewSample.java

package com.sai.samples.views; 

import java.util.Calendar; 

import android.app.Activity; 
import android.app.DatePickerDialog; 
import android.app.Dialog; 
import android.app.TimePickerDialog; 
import android.os.Bundle; 
import android.view.View; 
import android.view.View.OnClickListener; 
import android.widget.Button; 
import android.widget.DatePicker; 
import android.widget.TextView; 
import android.widget.TimePicker; 

public class PickerViewSample extends Activity { 

    static final int DATE_DIALOG_ID = 1; 
    static final int TIME_DIALOG_ID = 2; 
    private TextView dateDisplay; 
    private Button pickDate; 
    private int year, month, day; 
    private TextView timeDisplay; 
    private Button pickTime; 
    private int hours, min; 

    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     dateDisplay = (TextView)findViewById(R.id.TextView01); 
     pickDate = (Button)findViewById(R.id.Button01); 

     pickDate.setOnClickListener(new OnClickListener() { 

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

     }); 

     final Calendar cal = Calendar.getInstance(); 
     year = cal.get(Calendar.YEAR); 
     month = cal.get(Calendar.MONTH); 
     day = cal.get(Calendar.DAY_OF_MONTH); 

     updateDate(); 

     timeDisplay = (TextView)findViewById(R.id.TextView02); 
     pickTime = (Button)findViewById(R.id.Button02); 

     pickTime.setOnClickListener(new OnClickListener() { 

      @Override 
      public void onClick(View v) { 
       showDialog(TIME_DIALOG_ID); 

      } 

     }); 

     hours = cal.get(Calendar.HOUR); 
     min = cal.get(Calendar.MINUTE); 

     updateTime(); 
    } 

    private void updateTime() { 
     timeDisplay.setText(new StringBuilder().append(hours).append(':') 
       .append(min)); 

    } 

    private void updateDate() { 
     dateDisplay.setText(new StringBuilder().append(day).append('-') 
       .append(month + 1).append('-').append(year)); 

    } 

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

      @Override 
      public void onDateSet(DatePicker view, int yr, int monthOfYear, 
        int dayOfMonth) { 
       year = yr; 
       month = monthOfYear; 
       day = dayOfMonth; 
       updateDate(); 
      } 
    }; 

    private TimePickerDialog.OnTimeSetListener timeListener = 
     new TimePickerDialog.OnTimeSetListener() { 

      @Override 
      public void onTimeSet(TimePicker view, int hourOfDay, int minute) { 
       hours = hourOfDay; 
       min = minute; 
       updateTime(); 
      } 

    }; 
    protected Dialog onCreateDialog(int id){ 
     switch(id) { 
     case DATE_DIALOG_ID: 
      return new DatePickerDialog(this, dateListener, year, month, day); 
     case TIME_DIALOG_ID: 
      return new TimePickerDialog(this, timeListener, hours, min, false); 
     } 
     return null; 

    } 
} 

main.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    > 
<TextView android:text="@string/date_text" 
    android:id="@+id/TextView01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textSize="26px" 
    android:typeface="sans"></TextView> 
<Button android:text="@string/date_button" 
    android:id="@+id/Button01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"></Button> 

<TextView android:text="@string/time_text" 
    android:id="@+id/TextView02" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:textSize="26px" 
    android:typeface="sans"></TextView> 
<Button android:text="@string/time_button" 
    android:id="@+id/Button02" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"></Button> 
</LinearLayout> 

datepickerlayout.xml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"> 
<DatePicker 
    android:id="@+id/DatePicker01" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"></DatePicker> 
</LinearLayout> 
+2

Tu respuesta es para una actividad. específicamente dijo 'Diálogo'. :( – Jon

3

Aquí es lo que tengo que funciona:

public class EditRecordDialog extends Dialog { 
    protected Context _context; 
    private Record _record; 

    public EditRecordDialog(Context context, 
          Record record) { 
    super(context); 
    _context = context; 
    _record = record 
    Button buttonDate; 
    buttonDate.setText(_record.getRecordDate()); // returns 'mm-dd-yy' 

    } // EditRecordDialog 


// showDatePickerDialog ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
private void showDatePickerDialog(View view) { 
    String dateString; 
    int year, month, day; 

    dateString = buttonDate.getText().toString(); 
    month = Integer.valueOf(dateString.substring(0, 2)) - 1; // month is zero based 
    day = Integer.valueOf(dateString.substring(3, 5)); 
    year = Integer.valueOf("20" + dateString.substring(6, 8)); 

    DatePickerDialog dpd = new DatePickerDialog(_context, dateSetListener, year, month, day); 
    dpd.show(); 

} // showDatePickerDialog ---------------------------------------------------- 


// OnDateSetListener +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 
DatePickerDialog.OnDateSetListener dateSetListener = new DatePickerDialog.OnDateSetListener() { 
    @Override public void onDateSet(DatePicker view, int year, int month, int day) { 
    buttonDate.setText(ConfigObjectDAO.formatDate((month+1) + "-" + day + "-" + year)); 
    } // onDateSet 
}; // OnDateSetListener ------------------------------------------------------ 
} 
1

declarar variables en global como:

private int year, month, day, Hour, Minute; 

public static final int DATE_PICKER_ID = 1111; 

en onCrea Te()

// Get current date by calender 
final Calendar c = Calendar.getInstance(); 

year = c.get(Calendar.YEAR); 

month = c.get(Calendar.MONTH); 

day = c.get(Calendar.DAY_OF_MONTH); 

llamada selector de fechas del botón de clic

showDialog(Constant.DATE_PICKER_ID); 

métodos:

@Override 
protected Dialog onCreateDialog(int id) { 
    switch (id) { 
     case Constant.DATE_PICKER_ID: 

      // open datepicker dialog. 
      // set date picker for current date 
      // add pickerListener listner to date picker 
      return new DatePickerDialog(this, pickerListener, year, month, day); 

     case Constant.TIME_PICKER_ID: 
      return new TimePickerDialog(this, timeSetListener, Hour, Minute, false); 
    } 
    return null; 
} 

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

    // when dialog box is closed, below method will be called. 
    @Override 
    public void onDateSet(DatePicker view, int selectedYear, 
          int selectedMonth, int selectedDay) { 

     year = selectedYear; 
     month = selectedMonth; 
     day = selectedDay; 







      text_date.setText(new StringBuilder().append(month + 1) 
        .append("/").append(day).append("/").append(year) 
        .append(" ")); 


    } 
}; 
Cuestiones relacionadas