1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2026-04-24 15:51:24 +00:00
Files
NewPipe/app/src/main/java/org/schabi/newpipe/fragments/EmptyFragment.java
2020-04-02 15:57:50 +02:00

20 lines
576 B
Java

package org.schabi.newpipe.fragments;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.Nullable;
import org.schabi.newpipe.BaseFragment;
import org.schabi.newpipe.R;
public class EmptyFragment extends BaseFragment {
@Override
public View onCreateView(final LayoutInflater inflater, @Nullable final ViewGroup container,
final Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_empty, container, false);
}
}