Мне нужно поместить DialogFragment внутри фрагмента - PullRequest
0 голосов
/ 15 мая 2019

это снова я. Я делаю школьный проект, и я получил некоторую помощь с моим приложением в Android. Мне нужно поместить TimePickerDialog внутри фрагмента, в этом фрагменте у меня есть TextView, я хочу поставить выбранный здесь час. Но я не могу найти способ сделать это. Когда я слушаю, это не работает.

Я пытался изменить getActivity на другую вещь, которая может решить, но она не работает.

return new TimePickerDialog(getActivity(), (TimePickerDialog.OnTimeSetListener) getActivity(), hour, minute,
                DateFormat.is24HourFormat(getActivity()));

Вот мой основной фрагмент XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    tools:context=".DespertarFragment">

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="83dp"
        android:layout_marginEnd="83dp"
        android:text="Seleccione la hora"
        android:textSize="30sp"
        app:layout_constraintBottom_toTopOf="@+id/button"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="161dp"
        android:layout_marginTop="1dp"
        android:layout_marginEnd="162dp"
        android:text="Poner"
        app:layout_constraintBottom_toTopOf="@+id/button_cancel"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="1.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/textView1" />

    <Button
        android:id="@+id/button_cancel"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="161dp"
        android:layout_marginTop="145dp"
        android:layout_marginEnd="162dp"
        android:layout_marginBottom="156dp"
        android:text="Cancelar"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/button" />

</android.support.constraint.ConstraintLayout>

Вот класс:

@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_despertar, container, false);
        Button poner = (Button) view.findViewById(R.id.button);
        poner.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                DialogFragment timePicker = new TimePickerFragment();
                timePicker.show(getFragmentManager(), "Timepo");
            }
        });
        return view;
    }

    @Override
    public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
        TextView textView = (TextView) view.findViewById(R.id.textView1);
        textView.setText("Hora: " + hourOfDay + minute);
    }

А вот мой класс TimePickerDialog:

public class TimePickerFragment extends DialogFragment {
    @NonNull
    @Override
    public Dialog onCreateDialog(@Nullable Bundle savedInstanceState) {
        Calendar c = Calendar.getInstance();
        int hour = c.get(Calendar.HOUR_OF_DAY);
        int minute = c.get(Calendar.MINUTE);
        return new TimePickerDialog(getActivity(), HERE I DON'T KNOW WHAT CAN I PUT HERE TO PASS THE TIME TO MY MAIN FRAGMENT, hour, minute,
                DateFormat.is24HourFormat(getActivity()));
    }
}

ПРИМЕЧАНИЕ: мне не нужен onTimeSet в классе TimePickerDialog, мне нужно время в основном фрагменте.

Я ожидаю ViewText со временем, но он ничего не изменил.

Ответы [ 2 ]

0 голосов
/ 15 мая 2019

Попробуйте, это простой способ показать время выбора

 private void timePick(final TextView textView) {
    TimePickerDialog.OnTimeSetListener timer = new 
    TimePickerDialog.OnTimeSetListener() {
        @Override
        public void onTimeSet(TimePicker view, int hourOfDay, int minute) {
           //set time in your text view
        }
    };

    new TimePickerDialog(this,timer,currenthour,currentMinuts,false).show();

}

вызвать этот метод

 poner.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
             timePick(yourextView);
        }
    });
0 голосов
/ 15 мая 2019

в TimePickerFragment помещает код onCreateDialog () в onCreateView.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...