gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 21:56:02 34 4
gpt4 key购买 nike

我是 android word 的新手。

我正在做一个带有时间和日期选择器的 TextView 微调器。

  1. 默认情况下如何在 TextView 中设置当前时间和日期。
  2. 选择时间/日期后点击“设置”按钮,为什么我的时间/日期选择是空的

这是我的 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
}
}
}

谢谢。

最佳答案

我看到的问题是您的 DatePickerFragmentTimePickerFragments 是静态的,因此它们无法访问您 Activity 的 TextView 。如果它们不是静态的,那么您需要做的就是 onTimeSet(...) 方法中的 timeTextView.setText(...)。 (顺便说一下,保持它们静态很好,因为如果需要,您可以在另一个 Activity 中重复使用。)

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

下面我将仅提及 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 作为参数并保存对它的引用。在此处查看如何实现 DatePickerFragment https://gist.github.com/2935353

现在在您的 showDatePickerDialog(View v) 中,像这样传递您的 MainActivity(它也是一个 OnDateSetListener):

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

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

希望这能让事情变得更清楚一些。

附言您还应该在 DatePickerFragment 中使用空构造函数,这将防止您的应用在设备旋转时崩溃。

关于带日期选择器的 Android 文本微调器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13249696/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com