mirror of
https://github.com/zoriya/Opus.git
synced 2025-12-06 06:26:15 +00:00
24 lines
649 B
C#
24 lines
649 B
C#
using Android.OS;
|
|
using Android.Views;
|
|
using Android.Support.V4.App;
|
|
|
|
namespace MusicApp.Resources.Fragments
|
|
{
|
|
public class EmptyFragment : Fragment
|
|
{
|
|
public override void OnCreate(Bundle savedInstanceState)
|
|
{
|
|
base.OnCreate(savedInstanceState);
|
|
}
|
|
|
|
public static Fragment NewInstance()
|
|
{
|
|
return new EmptyFragment { Arguments = new Bundle() };
|
|
}
|
|
|
|
public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
|
|
{
|
|
return base.OnCreateView(inflater, container, savedInstanceState);
|
|
}
|
|
}
|
|
} |