- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试在 Android 中实现一个简单的 TimePickerDialog,但出现错误。我正在关注 Google 的本教程:https://developer.android.com/guide/topics/ui/controls/pickers.html
在我的代码中,我有一个名为 setFromTimeButton 的按钮,单击该按钮时应显示带有 TimePicker View 的 DialogFragment,但是,我有一个编译错误:
Cannot resolve symbol TimePickerFragment()
你知道为什么吗?谢谢!
这是我的课:
package it.bitrack.fabio.bitrack;
import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
//import android.app.Fragment;
import android.support.v4.app.DialogFragment;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import java.util.List;
import android.app.Dialog;
import android.text.format.DateFormat;
import android.app.TimePickerDialog;
import android.app.DatePickerDialog;
import android.icu.util.Calendar;
import android.widget.DatePicker;
import android.widget.TimePicker;
import android.widget.Button;
import android.widget.TextView;
/**
* A simple {@link Fragment} subclass.
* Activities that contain this fragment must implement the
* {@link ScheduleView.OnFragmentInteractionListener} interface
* to handle interaction events.
* Use the {@link ScheduleView#newInstance} factory method to
* create an instance of this fragment.
*/
public class ScheduleView extends DialogFragment implements TimePickerDialog.OnTimeSetListener, DatePickerDialog.OnDateSetListener {
// TODO: Rename parameter arguments, choose names that match
// the fragment initialization parameters, e.g. ARG_ITEM_NUMBER
private static final String ARG_PARAM1 = "param1";
private static final String ARG_PARAM2 = "param2";
Button setFromTimeButton;
android.support.v4.app.FragmentManager fragmentManager;
// TODO: Rename and change types of parameters
private String mParam1;
private String mParam2;
private OnFragmentInteractionListener mListener;
public ScheduleView() {
// Required empty public constructor
}
/**
* Use this factory method to create a new instance of
* this fragment using the provided parameters.
*
* @param param1 Parameter 1.
* @param param2 Parameter 2.
* @return A new instance of fragment ScheduleView.
*/
// TODO: Rename and change types and number of parameters
public static ScheduleView newInstance(String param1, String param2) {
ScheduleView fragment = new ScheduleView();
Bundle args = new Bundle();
args.putString(ARG_PARAM1, param1);
args.putString(ARG_PARAM2, param2);
fragment.setArguments(args);
return fragment;
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (getArguments() != null) {
mParam1 = getArguments().getString(ARG_PARAM1);
mParam2 = getArguments().getString(ARG_PARAM2);
}
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_schedule_view, container, false);
setFromTimeButton = (Button) view.findViewById(R.id.setFromTimeButton);
fragmentManager = getFragmentManager();
setFromTimeButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
DialogFragment newFragment = new TimePickerFragment();
newFragment.show(fragmentManager, "timePicker");
}
});
return view;
}
// TODO: Rename method, update argument and hook method into UI event
public void onButtonPressed(Uri uri) {
if (mListener != null) {
mListener.onFragmentInteraction(uri);
}
}
@Override
public void onAttach(Context context) {
super.onAttach(context);
if (context instanceof OnFragmentInteractionListener) {
mListener = (OnFragmentInteractionListener) context;
} else {
throw new RuntimeException(context.toString()
+ " must implement OnFragmentInteractionListener");
}
}
@Override
public void onDetach() {
super.onDetach();
mListener = null;
}
@Override
public void onDateSet(DatePicker view, int year, int month, int dayOfMonth) {
}
@Override
public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
}
/**
* This interface must be implemented by activities that contain this
* fragment to allow an interaction in this fragment to be communicated
* to the activity and potentially other fragments contained in that
* activity.
* <p>
* See the Android Training lesson <a href=
* "http://developer.android.com/training/basics/fragments/communicating.html"
* >Communicating with Other Fragments</a> for more information.
*/
public interface OnFragmentInteractionListener {
// TODO: Update argument type and name
void onFragmentInteraction(Uri uri);
}
@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 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
}
}
现在你可以调用它:
DialogFragment newFragment = new TimePickerFragment();
newFragment.show(fragmentManager, "timePicker");
关于android - Android 中的 TimePickerDialog,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43429196/
我是 Android 新手。在这里,我又提出了另一个“简单”的问题。我希望你可以帮助我。我只想要一个在对话框中显示 TimePicker 的按钮。当我在时间选择器中设置时间时,我想获取选定的时间。我正
我正在尝试为我的 TimePickerDialog 设置一个标题。我看过几个例子,但我无法获得我想要的结果。这就是我想要得到的。 但不知道如何在图片中放置“请选择日期”这样的标题。 到目前为止我的代码
当我滚动分钟时,Android Timepickerdialog 会不合逻辑地更改小时数。我在 timepickerdialog 中将分钟间隔设置为 30 分钟,因此分钟的值为 00 和 30。例如,
我正在尝试制作一个简单的TimePickerDialog。当用户单击 editText 框时,时间选择器就会出现。你能帮忙吗?下面的代码不会显示该对话框。感谢您的帮助。 package com.exa
我使用以下代码行创建一个 TimePickerDialog : new TimePickerDialog(context,new Listener(),0,1,true); . 我的问题是,TimeP
Android Studio: with single textView and single TimePickerDialog as a nested local class. When the T
我正在开发一个 Android 应用程序,现在我的 UI 的一部分有问题:TimePickerDialog。我希望对话框的顶部是橙色而不是经典的 我知道我可以创建一个自定义主题,但我的老板希望它在 4
我写这段代码是为了制作一个 TimePickerDialog盒子 btnDialBoxTime.setOnClickListener(new OnClickListener() { publi
我如何禁用 TimePickerDialog 在按下设置时关闭? 我需要检查值是否合适,如果不是,我不希望它被忽略。 mTimePicker.setCancelable(true); 但我确实希望用户
我有一个扩展 DialogFragment 的类,在这个类中我使用了 TimePickerDialog。 时间选择器工作,但问题是有时 CANCEL 和 OK 按钮不显示,如下图所示。 按钮有效但不可
重要编辑:我做了一些搜索,似乎 OnTimeChangedListener 不会在 Android 5.0 (API 21) 中触发。 Gustavo 在下面的回答适用于 API 20 或更低版本,以
我有一个带有“TimePreference”类的 TimePickerDialog 首选项,它扩展了 DialogPreference: public class TimePreference ext
在我的项目中,我使用 TimepickerDialog 在 TextView 中显示时间。我的 Timepickerdialog 显示为时钟,但我希望它显示为微调器。我该怎么做? 最佳答案 使用此代码
我创建了一个 TimePickerDialog 并更改了默认颜色。此外,我想将样式更改为不同的样式。 我找不到同时更改颜色和样式的方法。 这就是我创建 TimePickerDialog 的方式: Ti
我有一个 Activity - TimePickerActivity - 它创建了一个 TimePickerDialog。我有一个 onTimeSetListener,它响应 Set 按钮,在它结束时
我正在寻找一种方法来设置 Android TimePickerDialog 上可选择的最大和最小时间,并将默认分钟间隔从 1 分钟更改为 5 分钟, 我认为这很容易,但我找不到方法! 最佳答案 此答案
我正在使用时间选择器对话框来选择时间,但我最近观察到,当用户选择时间时,它允许用户选择已经过去的时间。示例:如果当前日期是 25-03-2020,时间是下午 5:00,但时间选择器允许选择下午 5:0
哈罗! 我正在尝试编写我的第一个 Android 应用程序,但遇到了困难。 我想允许用户为每日计划设置“开始”和“停止”时间。我已经成功实现了 TimePickerDialog 及其旁边的 TextV
我有一个简单/默认的 TimePickerDialog: TimePickerDialog timePickerDialog = new TimePickerDialog(getActivity())
只允许更改时间,怎么办? 在简单的TimePicker中,我可以设置TimePicker.OnTimeChangedListener接口(interface),但是TimePickerDialog中没
我是一名优秀的程序员,十分优秀!