magic_box_2/GameDataModel/src/main/java/Interfaces/BaseFragmeneInerface.java
2018-04-19 10:58:46 +08:00

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);
}