package com.bsk.zhangbo.demoforbsk.ui.fragment;
|
|
import android.os.Bundle;
|
import android.view.View;
|
|
import com.bsk.zhangbo.demoforbsk.R;
|
import com.bsk.zhangbo.demoforbsk.base.BaseFragment;
|
|
/**
|
* Created by zhangbo on 2017/2/15.
|
*/
|
|
public class TwoFragment extends BaseFragment {
|
|
public static TwoFragment newInstance() {
|
return new TwoFragment();
|
}
|
@Override
|
protected int getLayoutId() {
|
return R.layout.fragment_two;
|
}
|
|
@Override
|
protected void initViews(View view, Bundle savedInstanceState) {
|
|
}
|
|
@Override
|
protected void initToolbar(Bundle savedInstanceState) {
|
|
}
|
|
@Override
|
protected void initListeners() {
|
|
}
|
|
@Override
|
protected void initData() {
|
|
}
|
}
|