| | |
| | | import androidx.annotation.NonNull; |
| | | import androidx.annotation.Nullable; |
| | | |
| | | import java.io.File; |
| | | import java.io.FileOutputStream; |
| | | import java.nio.ByteBuffer; |
| | | |
| | | import me.yokeyword.fragmentation.ISupportFragment; |
| | | import me.yokeyword.fragmentation.SupportFragment; |
| | | import safeluck.drive.evaluation.BuildConfig; |
| | | import safeluck.drive.evaluation.R; |
| | | import safeluck.drive.evaluation.util.DimenUtil; |
| | | |
| | | |
| | | /** |
| | | * 首页 |
| | |
| | | */ |
| | | public class HomeFragment extends SupportFragment implements View.OnClickListener { |
| | | |
| | | private static final String TAG = HomeFragment.class.getSimpleName(); |
| | | private TextView tv_app_version; |
| | | public static ISupportFragment newInstance() { |
| | | return new HomeFragment(); |
| | |
| | | |
| | | View view = inflater.inflate(R.layout.layout_home_fragment, container, false); |
| | | initView(view); |
| | | |
| | | return view; |
| | | } |
| | | |