-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathDemoFragment.java
More file actions
125 lines (110 loc) · 3.83 KB
/
DemoFragment.java
File metadata and controls
125 lines (110 loc) · 3.83 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
* Copyright (C) 2016 MarkZhai (http://zhaiyifan.cn).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.blockcanary;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import com.sensorsdata.analytics.android.sdk.SensorsDataTrackViewOnClick;
import java.io.FileInputStream;
import java.io.IOException;
public class DemoFragment extends Fragment implements View.OnClickListener {
private static final String DEMO_FRAGMENT = "DemoFragment";
public static DemoFragment newInstance() {
return new DemoFragment();
}
@Override
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
@Nullable
@Override
public View onCreateView(final LayoutInflater inflater, final ViewGroup container, final Bundle savedInstanceState) {
return inflater.inflate(R.layout.activity_main, null);
}
@Override
public void onViewCreated(final View view, @Nullable final Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
Button button1 = (Button) view.findViewById(R.id.button1);
Button button2 = (Button) view.findViewById(R.id.button2);
Button button3 = (Button) view.findViewById(R.id.button3);
button1.setOnClickListener(this);
button2.setOnClickListener(this);
button3.setOnClickListener(this);
}
@Override
public void onDestroyView() {
super.onDestroyView();
}
@Override
public void onActivityCreated(@Nullable final Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
}
@SensorsDataTrackViewOnClick
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.button1:
try {
Thread.sleep(1300);
} catch (InterruptedException e) {
e.printStackTrace();
Log.e(DEMO_FRAGMENT, "onClick of R.id.button1: ", e);
}
break;
case R.id.button2:
for (int i = 0; i < 100; ++i) {
readFile();
}
break;
case R.id.button3:
double result = compute();
System.out.println(result);
break;
default:
break;
}
}
private static double compute() {
double result = 0;
for (int i = 0; i < 1000000; ++i) {
result += Math.acos(Math.cos(i));
result -= Math.asin(Math.sin(i));
}
return result;
}
private static void readFile() {
FileInputStream reader = null;
try {
reader = new FileInputStream("/proc/stat");
while (reader.read() != -1) ;
} catch (IOException e) {
Log.e(DEMO_FRAGMENT, "readFile: /proc/stat", e);
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
Log.e(DEMO_FRAGMENT, " on close reader ", e);
}
}
}
}
}