MyFragmentView.java 332 Bytes
package com.cnlive.strike;

import com.cnlive.core.libs.base.frame.view.BaseView;

public class MyFragmentView extends BaseView {
    MyFragment fragment;

    public MyFragmentView(MyFragment fragment) {
        this.fragment = fragment;
    }

    public void setData(String msg) {
        fragment.textView.setText(msg);
    }
}