Home | History | Annotate | Download | only in settings

Lines Matching refs:TextView

54 import android.widget.TextView;
102 private TextView mDeviceId; //DeviceId is the IMEI in GSM and the MEID in CDMA
103 private TextView number;
104 private TextView callState;
105 private TextView operatorName;
106 private TextView roamingState;
107 private TextView gsmState;
108 private TextView gprsState;
109 private TextView network;
110 private TextView dBm;
111 private TextView mMwi;
112 private TextView mCfi;
113 private TextView mLocation;
114 private TextView mNeighboringCids;
115 private TextView mCellInfo;
116 private TextView resets;
117 private TextView attempts;
118 private TextView successes;
119 private TextView disconnects;
120 private TextView sentSinceReceived;
121 private TextView sent;
122 private TextView received;
123 private TextView mPingIpAddr;
124 private TextView mPingHostname;
125 private TextView mHttpClientTest;
126 private TextView dnsCheckState;
263 mDeviceId= (TextView) findViewById(R.id.imei);
264 number = (TextView) findViewById(R.id.number);
265 callState = (TextView) findViewById(R.id.call);
266 operatorName = (TextView) findViewById(R.id.operator);
267 roamingState = (TextView) findViewById(R.id.roaming);
268 gsmState = (TextView) findViewById(R.id.gsm);
269 gprsState = (TextView) findViewById(R.id.gprs);
270 network = (TextView) findViewById(R.id.network);
271 dBm = (TextView) findViewById(R.id.dbm);
272 mMwi = (TextView) findViewById(R.id.mwi);
273 mCfi = (TextView) findViewById(R.id.cfi);
274 mLocation = (TextView) findViewById(R.id.location);
275 mNeighboringCids = (TextView) findViewById(R.id.neighboring);
276 mCellInfo = (TextView) findViewById(R.id.cellinfo);
278 resets = (TextView) findViewById(R.id.resets);
279 attempts = (TextView) findViewById(R.id.attempts);
280 successes = (TextView) findViewById(R.id.successes);
281 disconnects = (TextView) findViewById(R.id.disconnects);
282 sentSinceReceived = (TextView) findViewById(R.id.sentSinceReceived);
283 sent = (TextView) findViewById(R.id.sent);
284 received = (TextView) findViewById(R.id.received);
286 dnsCheckState = (TextView) findViewById(R.id.dnsCheckState);
288 mPingIpAddr = (TextView) findViewById(R.id.pingIpAddr);
289 mPingHostname = (TextView) findViewById(R.id.pingHostname);
290 mHttpClientTest = (TextView) findViewById(R.id.httpClientTest);