带有日期选择器的Android文本微调器

时间:2012-11-06 11:07:56

标签: android android-4.0-ice-cream-sandwich android-spinner android-datepicker

我是android word的新手。

我正在使用时间和日期选择器进行文本视图微调器。

  1. 默认情况下如何在文本视图中设置当前时间和日期。
  2. 选择时间/日期并单击“设置”按钮后,为什么我的时间/日期选择为空
  3. 这是我的activity_main.xml

    <?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:paddingLeft="16dp"
    android:paddingRight="16dp"
    android:orientation="vertical" >
    
    <TextView
        android:id="@+id/startTime"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"                 
        style="@android:style/Widget.Holo.Spinner" 
        android:onClick="showTimePickerDialog"/>
    <TextView
        android:id="@+id/endTime"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"                 
        style="@android:style/Widget.Holo.Spinner" 
        android:onClick="showTimePickerDialog"/>
    <TextView
        android:id="@+id/date"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"                 
        style="@android:style/Widget.Holo.Spinner" 
        android:onClick="showDatePickerDialog"/>
    

    这是我的MainActivity.java

    import java.util.Calendar;
    import android.os.Bundle;
    import android.app.Activity;
    import android.app.DatePickerDialog;
    import android.app.Dialog;
    import android.app.DialogFragment;
    import android.app.TimePickerDialog;
    import android.text.format.DateFormat;
    import android.view.Menu;
    import android.view.View;
    import android.widget.DatePicker;
    import android.widget.TimePicker;
    
    public class MainActivity extends Activity {
    
        @Override
        public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }
    
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            getMenuInflater().inflate(R.menu.activity_main, menu);
            return true;
        }
    
        public void showTimePickerDialog(View v) {
            DialogFragment newFragment = new TimePickerFragment();
            newFragment.show(getFragmentManager(), "timePicker");
        }
    
        public void showDatePickerDialog(View v) {
            DialogFragment newFragment = new DatePickerFragment();
            newFragment.show(getFragmentManager(), "datePicker");
        }
    
        public static class TimePickerFragment extends DialogFragment implements TimePickerDialog.OnTimeSetListener {
    
            @Override
            public Dialog onCreateDialog(Bundle savedInstanceState) {
                // Use the current time as the default values for the picker
                final Calendar c = Calendar.getInstance();
                int hour = c.get(Calendar.HOUR_OF_DAY);
                int minute = c.get(Calendar.MINUTE);
    
                // Create a new instance of TimePickerDialog and return it
                return new TimePickerDialog(getActivity(), this, hour, minute,
                        DateFormat.is24HourFormat(getActivity()));
            }
    
            public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
                // Do something with the time chosen by the user
            }
        }
    
        public static class DatePickerFragment extends DialogFragment implements DatePickerDialog.OnDateSetListener {
    
            @Override
            public Dialog onCreateDialog(Bundle savedInstanceState) {
                // Use the current date as the default date in the picker
                final Calendar c = Calendar.getInstance();
                int year = c.get(Calendar.YEAR);
                int month = c.get(Calendar.MONTH);
                int day = c.get(Calendar.DAY_OF_MONTH);
    
                // Create a new instance of DatePickerDialog and return it
                return new DatePickerDialog(getActivity(), this, year, month, day);
            }
    
            public void onDateSet(DatePicker view, int year, int month, int day) {
                // Do something with the date chosen by the user
            }
        }
    }
    

    谢谢。

2 个答案:

答案 0 :(得分:1)

你应该写一些语句来显示TextView上的日期/时间。和 定义为类变量。

View v = null;      

  public void showTimePickerDialog(View v) {
    this.v = v;
    DialogFragment newFragment = new TimePickerFragment();
    newFragment.show(getFragmentManager(), "timePicker");

}

public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
        // Do something with the time chosen by the user
         v.setText(""+hourOfDay+":"+minute);

    }

答案 1 :(得分:1)

我发现问题是您的DatePickerFragmentTimePickerFragments是静态的,因此他们无法访问您活动的文字视图。如果它们不是静态的,那么您需要做的只是在timeTextView.setText(...)方法内onTimeSet(...)。 (顺便说一句,保持静态是好的,因为如果需要,你可以在另一个活动中重复使用。)

解决此问题的一种方法是创建一个额外的接口,然后在创建它们时将其传递给选择器对话框片段然后进行回调。但是为什么在OnDateSetListener和OnTimeSetListener接口已经存在时呢?

我将仅引用下面的DatePickerFragment,但同样适用于TimePickerFragment。

您的MainActivity应该实施OnDateSetListener,而不是DatePickerFragment。 OnDateSetListener中的一个重写方法是onDateSet(...),您可以在其中设置TextView中的日期。例如:

@Override
public void onDateSet(DatePicker view, int year, int monthOfYear,
        int dayOfMonth) {
    Calendar cal = new GregorianCalendar(year, monthOfYear, dayOfMonth);
    mDateTextView.setText(DATE_FORMATTER.format(cal.getTime()));
}

您的DatePickerFragment应该有一个构造函数,该构造函数将OnDateSetListener作为参数并保存对它的引用。了解如何在此https://gist.github.com/2935353

实施DatePickerFragment

现在在showDatePickerDialog(View v)内,传递你的MainActivity(也是一个OnDateSetListener),如下所示:

FragmentTransaction ft = getFragmentManager().beginTransaction();
DialogFragment newFragment = new DatePickerDialogFragment(MainActivity.this);
newFragment.show(ft, "date_dialog");

然后,当设置时间时,实现'OnDateSetListener'的MainActivity将获得回调,并且您的textview将被更新。

希望这可以解决一些问题。

P.S。你应该在DatePickerFragment中使用空构造函数,它会阻止你的应用在旋转设备时崩溃。