Home | History | Annotate | Download | only in settings

Lines Matching refs:TextView

50 import android.widget.TextView;
92 private TextView mDeviceId; //DeviceId is the IMEI in GSM and the MEID in CDMA
93 private TextView number;
94 private TextView callState;
95 private TextView operatorName;
96 private TextView roamingState;
97 private TextView gsmState;
98 private TextView gprsState;
99 private TextView network;
100 private TextView dBm;
101 private TextView mMwi;
102 private TextView mCfi;
103 private TextView mLocation;
104 private TextView mNeighboringCids;
105 private TextView mCellInfo;
106 private TextView resets;
107 private TextView attempts;
108 private TextView successes;
109 private TextView disconnects;
110 private TextView sentSinceReceived;
111 private TextView sent;
112 private TextView received;
113 private TextView mPingIpAddr;
114 private TextView mPingHostname;
115 private TextView mHttpClientTest;
116 private TextView dnsCheckState;
253 mDeviceId= (TextView) findViewById(R.id.imei);
254 number = (TextView) findViewById(R.id.number);
255 callState = (TextView) findViewById(R.id.call);
256 operatorName = (TextView) findViewById(R.id.operator);
257 roamingState = (TextView) findViewById(R.id.roaming);
258 gsmState = (TextView) findViewById(R.id.gsm);
259 gprsState = (TextView) findViewById(R.id.gprs);
260 network = (TextView) findViewById(R.id.network);
261 dBm = (TextView) findViewById(R.id.dbm);
262 mMwi = (TextView) findViewById(R.id.mwi);
263 mCfi = (TextView) findViewById(R.id.cfi);
264 mLocation = (TextView) findViewById(R.id.location);
265 mNeighboringCids = (TextView) findViewById(R.id.neighboring);
266 mCellInfo = (TextView) findViewById(R.id.cellinfo);
268 resets = (TextView) findViewById(R.id.resets);
269 attempts = (TextView) findViewById(R.id.attempts);
270 successes = (TextView) findViewById(R.id.successes);
271 disconnects = (TextView) findViewById(R.id.disconnects);
272 sentSinceReceived = (TextView) findViewById(R.id.sentSinceReceived);
273 sent = (TextView) findViewById(R.id.sent);
274 received = (TextView) findViewById(R.id.received);
276 dnsCheckState = (TextView) findViewById(R.id.dnsCheckState);
278 mPingIpAddr = (TextView) findViewById(R.id.pingIpAddr);
279 mPingHostname = (TextView) findViewById(R.id.pingHostname);
280 mHttpClientTest = (TextView) findViewById(R.id.httpClientTest);