MyFragment1View.java
517 Bytes
package com.cnlive.strike;
import android.util.Log;
import com.cnlive.core.libs.base.frame.view.BaseView;
public class MyFragment1View extends BaseView {
// private MyFragment fragment;
//
// /**
// * 可给可不给,看自己需要
// *
// * @param fragment
// */
public MyFragment1View(MyFragment1 fragment) {
// this.fragment = fragment;
Log.e(TAG, "MyFragment1View: " + fragment);
}
public void setData1(String msg) {
Log.e(TAG, "setData1: ");
}
}