2016-10-28 13:18:11 +02:00
|
|
|
package me.impy.aegis;
|
|
|
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.support.design.widget.BottomSheetDialogFragment;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2016-11-01 22:16:54 +01:00
|
|
|
import android.widget.LinearLayout;
|
2016-10-28 13:18:11 +02:00
|
|
|
|
|
|
|
public class EditProfileBottomSheetdialog extends BottomSheetDialogFragment {
|
2017-08-26 21:15:53 +02:00
|
|
|
LinearLayout _copyLayout;
|
2016-10-28 13:18:11 +02:00
|
|
|
|
|
|
|
public static EditProfileBottomSheetdialog getInstance() {
|
|
|
|
return new EditProfileBottomSheetdialog();
|
|
|
|
}
|
|
|
|
|
2016-11-01 22:16:54 +01:00
|
|
|
public LinearLayout GetCopyLayout()
|
|
|
|
{
|
2017-08-26 21:15:53 +02:00
|
|
|
return _copyLayout;
|
2016-11-01 22:16:54 +01:00
|
|
|
}
|
|
|
|
|
2016-10-28 13:18:11 +02:00
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
|
|
|
return inflater.inflate(R.layout.bottom_sheet_edit_profile, container, false);
|
|
|
|
}
|
2017-08-07 22:38:36 +02:00
|
|
|
}
|