沈斌
2018-05-16 6c88cd89b3f3d6d140f6eb0cec20e2f57a7ff563
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.moral.yunfushao.activity;
 
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
 
import com.moral.yunfushao.MainApp;
import com.moral.yunfushao.Manifest;
import com.moral.yunfushao.R;
import com.moral.yunfushao.base.BaseActivity;
 
/**
 * Created by Administrator on 2018/5/8.
 */
 
public class TestActivity extends BaseActivity {
    TextView tv_content;
    @Override
    protected void getBundleExtras(Bundle extras) {
 
    }
 
    @Override
    protected int getLayoutId() {
        return R.layout.ac_test_layout;
    }
 
    @Override
    protected void initViews() {
        tv_content = (TextView) findViewById(R.id.tv_content);
        tv_content.setText(MainApp.theApp.sharedPreferencesUtil.getTest());
    }
 
    @Override
    protected void initListener() {
 
    }
 
    @Override
    protected void initData() {
 
    }
 
    @Override
    protected void processClick(View view) {
 
    }
 
    @Override
    protected void onErrorPageClick() {
 
    }
}