Видимость корня раздутого макета меняется с видимостью ребенка - PullRequest
0 голосов
/ 18 октября 2019

У меня странная ошибка / побочный эффект, возникающий с моим приложением для Android, которое я делаю сейчас для школьного проекта. Предполагается, что конечной целью будет представление, которое открывается после нажатия кнопки в верхней части экрана. Первоначально он размещается невидимым и после него переключается.

Однако по какой-то причине к корневому представлению, к которому он присоединен, также переключается видимость, что, как оказалось, является основным макетом фрагмента, в котором он находится. Таким образом, первоначальный вызов setVisibility () приводит к исчезновению всего моего фрагмента.

По какой-либо причине?

РЕДАКТИРОВАТЬ: Предоставление макету привязки FrameLayout для решения проблемы. Однако все еще остается вопрос: что вызывает такое поведение?

Код:

        @Override
    public void onStart() {
        super.onStart();

        //prep timeselector view for transitions
        dashboardContainer = this.getView().findViewById(R.id.dashboardContainer);
        vgTimeSelector = getLayoutInflater().inflate(R.layout.viewgroup_timeselector,dashboardContainer);
        vgTimeSelector.setVisibility(View.INVISIBLE);

        //add timeselector popup
        bellButton = this.getView().findViewById(R.id.notificationButton);
        bellButton.setOnClickListener(togglerListener);
    }

private void toggleTimeSwitcherView () {

        //this is all animation stuff for timeselector
        int x = vgTimeSelector.getRight();
        int y = vgTimeSelector.getTop();
        int endRadius = (int) Math.hypot(vgTimeSelector.getWidth(),vgTimeSelector.getHeight());

        if (vgTimeSelector.getVisibility() == View.INVISIBLE) {
            vgTimeSelector.setVisibility(View.VISIBLE);
            Animator animator = ViewAnimationUtils.createCircularReveal(vgTimeSelector, x, y, 0, endRadius);
            animator.start();
        }
        else {
            Animator animator = ViewAnimationUtils.createCircularReveal(vgTimeSelector, x, y, endRadius, 0);
            animator.start();
            vgTimeSelector.setVisibility(View.INVISIBLE);
        }
    }

XML:


Fragment Layout:
<RelativeLayout 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=".DashboardFragment"
    android:id="@+id/dashboardContainer">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/notificationButton"
        android:layout_alignParentRight="true"
        android:layout_margin="16dp"
        android:text="Bell"/> 

...

</RelativeLayout>

Child View:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="16dp"
    android:background="@color/darkGrey"
    android:id="@+id/timeselector"
    android:animateLayoutChanges="true">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:text="Notify me later"
        android:id="@+id/notifyTV"
        android:textSize="24sp"/>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:gravity="center"
        android:layout_below="@id/notifyTV">

        <TimePicker
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:timePickerMode="spinner" />

        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="N"/>
        <Button
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Y"/>

    </LinearLayout>

</RelativeLayout>

1 Ответ

0 голосов
/ 18 октября 2019

Вы переключаете видимость всего dashboardContainer. Я считаю, что dashboardContainer.setVisibility(View.VISIBLE); следует заменить на vgTimeSelector.setVisibility(View.VISIBLE) и

dashboardContainer.setVisibility(View.INVISIBLE); на vgTimeSelector.setVisibility(View.INVISIBLE)

//this is all animation stuff for timeselector
        int x = vgTimeSelector.getRight();
        int y = vgTimeSelector.getTop();
        int endRadius = (int) Math.hypot(vgTimeSelector.getWidth(),vgTimeSelector.getHeight());

        if (vgTimeSelector.getVisibility() == View.INVISIBLE) {
            dashboardContainer.setVisibility(View.VISIBLE);
            Animator animator = ViewAnimationUtils.createCircularReveal(vgTimeSelector, x, y, 0, endRadius);
            animator.start();
        }
        else {
            Animator animator = ViewAnimationUtils.createCircularReveal(vgTimeSelector, x, y, endRadius, 0);
            animator.start();
            dashboardContainer.setVisibility(View.INVISIBLE);
        }
...