15 lines
408 B
Java
15 lines
408 B
Java
package Interfaces;
|
|
|
|
import android.content.Context;
|
|
import android.os.Bundle;
|
|
import android.support.annotation.Nullable;
|
|
import android.view.LayoutInflater;
|
|
import android.view.View;
|
|
import android.view.ViewGroup;
|
|
|
|
public interface BaseFragmeneInerface {
|
|
void init(Context context);
|
|
View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState);
|
|
|
|
}
|