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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
|
package de.bjusystems.vdrmanager.gui;
import java.util.List;
import android.app.AlertDialog;
import android.app.ProgressDialog;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Bundle;
import android.support.v4.app.ActionBarDrawerToggle;
import android.support.v4.view.GravityCompat;
import android.support.v4.view.MenuCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBarActivity;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;
import android.widget.ViewFlipper;
import de.bjusystems.vdrmanager.R;
import de.bjusystems.vdrmanager.app.VdrManagerApp;
import de.bjusystems.vdrmanager.data.Channel;
import de.bjusystems.vdrmanager.data.Preferences;
import de.bjusystems.vdrmanager.utils.svdrp.SvdrpAsyncTask;
import de.bjusystems.vdrmanager.utils.svdrp.SvdrpClient;
import de.bjusystems.vdrmanager.utils.svdrp.SvdrpEvent;
import de.bjusystems.vdrmanager.utils.svdrp.SvdrpException;
import de.bjusystems.vdrmanager.utils.svdrp.SvdrpExceptionListener;
import de.bjusystems.vdrmanager.utils.svdrp.SvdrpFinishedListener;
import de.bjusystems.vdrmanager.utils.svdrp.SvdrpListener;
public abstract class BaseActivity<Result, T extends ListView> extends
ActionBarActivity implements OnClickListener, SvdrpListener,
SvdrpExceptionListener, SvdrpFinishedListener<Result> {
public static final String TAG = BaseActivity.class.getName();
public static final int MENU_GROUP_REFRESH = 99;
public static final int MENU_REFRESH = 99;
protected T listView;
protected ViewFlipper flipper;
private Button retry;
private ProgressDialog progress;
// protected SvdrpProgressDialog progress;
private CharSequence mDrawerTitle;
private DrawerLayout mDrawerLayout;
private ListView mDrawerList;
private ActionBarDrawerToggle mDrawerToggle;
private String[] mTitles;
abstract protected String getWindowTitle();
abstract protected int getMainLayout();
protected void noInternetConnection() {
alert(R.string.no_internet_connection);
}
abstract protected boolean displayingResults();
/**
* When using the ActionBarDrawerToggle, you must call it during
* onPostCreate() and onConfigurationChanged()...
*/
@Override
protected void onPostCreate(Bundle savedInstanceState) {
super.onPostCreate(savedInstanceState);
// Sync the toggle state after onRestoreInstanceState has occurred.
mDrawerToggle.syncState();
}
protected boolean isForceRefresh() {
if (forceRefresh == false) {
return false;
}
forceRefresh = false;
return true;
}
protected boolean forceRefresh = false;
protected void switchNoConnection() {
if (flipper == null) {
say(R.string.no_connection);
return;
}
if (displayingResults()) {
say(R.string.no_connection);
} else {
flipper.setDisplayedChild(1);
}
}
protected CertificateProblemDialog getCertificateProblemDialog() {
return new CertificateProblemDialog(this);
}
@Override
public void onConfigurationChanged(final Configuration newConfig) {
Preferences.setLocale(this);
super.onConfigurationChanged(newConfig);
mDrawerToggle.onConfigurationChanged(newConfig);
}
@Override
protected void onResume() {
Preferences.setLocale(this);
// Preferences.init(this);
super.onResume();
}
protected void initFlipper() {
this.flipper = (ViewFlipper) findViewById(R.id.flipper);
retry = (Button) findViewById(R.id.retry_button);
retry.setOnClickListener(this);
}
@Override
public void onClick(final View v) {
if (v.getId() == R.id.retry_button) {
retry();
}
}
//
// protected void updateWindowTitle(int topic, int subtopic) {
// String title;
// title = getString(topic);
// if (subtopic != -1) {
// title += " > " + getString(subtopic);
// }
// setTitle(title);
// }
//
// protected void updateWindowTitle(String topic, String subtopic) {
// String title = topic;
// if (subtopic != null) {
// title += " > " + subtopic;
// }
// setTitle(title);
// }
abstract protected int getListNavigationIndex();
public static final int LIST_NAVIGATION_CHANNELS = 0;
public static final int LIST_NAVIGATION_EPG_BY_TIME = 1;
public static final int LIST_NAVIGATION_EPG_BY_CHANNEL = 2;
public static final int LIST_NAVIGATION_RECORDINGS = 3;
public static final int LIST_NAVIGATION_TIMERS = 4;
protected boolean hasListNavigation() {
return true;
}
protected void initListNavigation() {
if (hasListNavigation() == false) {
return;
}
// getSupportActionBar().setDisplayShowTitleEnabled(false);
//
// getSupportActionBar().setNavigationMode(
// getSupportActionBar().NAVIGATION_MODE_LIST);
//
// final ArrayAdapter<CharSequence> mSpinnerAdapter = ArrayAdapter
// .createFromResource(this, R.array.navigation_array,
// android.R.layout.simple_spinner_dropdown_item);
//
// getSupportActionBar().setListNavigationCallbacks(mSpinnerAdapter,
// new OnNavigationListener() {
//
// private boolean firstHit = true;
//
// @Override
// public boolean onNavigationItemSelected(
// final int itemPosition, final long itemId) {
//
// if (firstHit == true) {
// firstHit = false;
// return false;
// }
// switch (itemPosition) {
//
// case LIST_NAVIGATION_CHANNELS: {
// startActivity(ChannelListActivity.class);
// return true;
// }
// case LIST_NAVIGATION_EPG_BY_TIME: {
// startActivity(TimeEpgListActivity.class);
// return true;
// }
//
// case LIST_NAVIGATION_EPG_BY_CHANNEL: {
// startActivity(EventEpgListActivity.class);
// return true;
// }
//
// case LIST_NAVIGATION_RECORDINGS: {
// startActivity(RecordingListActivity.class);
// return true;
// }
//
// case LIST_NAVIGATION_TIMERS: {
// startActivity(TimerListActivity.class);
// return true;
// }
//
// }
// return false;
// }
// });
// getSupportActionBar().setSelectedNavigationItem(
// getListNavigationIndex());
}
@Override
protected void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Preferences.setLocale(this);
setContentView(getMainLayout());
progress = new ProgressDialog(this);
progress.setCancelable(false);
progress.setCanceledOnTouchOutside(false);
// progress.setOnCancelListener(new OnCancelListener() {
// @Override
// public void onCancel(DialogInterface dialog) {
//
// }
// });
initActionBar();
initListNavigation();
initLeftDrawer(savedInstanceState);
// new OnNavigationListener() {
// @Override
// public boolean onNavigationItemSelected(int itemPosition, long
// itemId) {
// System.err.println("itemPosition: "+ itemPosition +", itemId:" +
// itemId);
// rturn false;
// }
// });
// your logic for click listner
// setListenerForActionBarCustomView(actionBarView);
// private void setListenerForActionBarCustomView(View actionBarView) {
// ActionBarCustomViewOnClickListener actionBarCustomViewOnClickListener
// = new ActionBarCustomViewOnClickListener();
// actionBarView.findViewById(R.id.text_view_title).setOnClickListener(actionBarCustomViewOnClickListener);
// }
}
protected void initLeftDrawer(final Bundle savedInstanceState) {
mDrawerTitle = getTitle();
mTitles = getResources().getStringArray(R.array.navigation_array);
mDrawerLayout = (DrawerLayout) findViewById(R.id.drawer_layout);
mDrawerList = (ListView) findViewById(R.id.left_drawer);
// set a custom shadow that overlays the main content when the drawer
// opens
mDrawerLayout.setDrawerShadow(R.drawable.drawer_shadow,
GravityCompat.START);
// set up the drawer's list view with items and click listener
mDrawerList.setAdapter(new ArrayAdapter<String>(this,
R.layout.drawer_list_item, mTitles));
mDrawerList.setOnItemClickListener(new DrawerItemClickListener());
// enable ActionBar app icon to behave as action to toggle nav drawer
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
// ActionBarDrawerToggle ties together the the proper interactions
// between the sliding drawer and the action bar app icon
mDrawerToggle = new ActionBarDrawerToggle(this, /* host Activity */
mDrawerLayout, /* DrawerLayout object */
R.drawable.ic_drawer, /* nav drawer image to replace 'Up' caret */
R.string.drawer_open, /* "open drawer" description for accessibility */
R.string.drawer_close /* "close drawer" description for accessibility */
) {
public void onDrawerClosed(View view) {
// getSupportActionBar().setTitle(mTitle);
//invalidateOptionsMenu(); // creates call to
// onPrepareOptionsMenu()
}
public void onDrawerOpened(View drawerView) {
// getSupportActionBar().setTitle(mDrawerTitle);
//invalidateOptionsMenu(); // creates call to
// onPrepareOptionsMenu()
}
};
mDrawerLayout.setDrawerListener(mDrawerToggle);
// if (savedInstanceState == null) {
// selectItem(0);
// }
}
/* The click listner for ListView in the navigation drawer */
private class DrawerItemClickListener implements
ListView.OnItemClickListener {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
selectItem(position);
}
}
private void selectItem(int position) {
// update selected item and title, then close the drawer
mDrawerList.setItemChecked(position, true);
// setTitle(mPlanetTitles[position]);
switch (position) {
case LIST_NAVIGATION_CHANNELS: {
startActivity(ChannelListActivity.class);
break;
}
case LIST_NAVIGATION_EPG_BY_TIME: {
startActivity(TimeEpgListActivity.class);
break;
}
case LIST_NAVIGATION_EPG_BY_CHANNEL: {
startActivity(EventEpgListActivity.class);
break;
}
case LIST_NAVIGATION_RECORDINGS: {
startActivity(RecordingListActivity.class);
break;
}
case LIST_NAVIGATION_TIMERS: {
startActivity(TimerListActivity.class);
break;
}
}
mDrawerLayout.closeDrawer(mDrawerList);
}
protected void initActionBar() {
getSupportActionBar().setHomeButtonEnabled(true);
}
public void startActivity(final Class<?> clazz) {
final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClass(this, clazz);
startActivity(intent);
finish();
}
protected int getBaseMenu() {
return R.menu.refresh_filter_menu;
}
@Override
public boolean onCreateOptionsMenu(final Menu menu) {
// MenuItem item;
// item = menu.add(MENU_GROUP_REFRESH, MENU_REFRESH, 0,
// R.string.refresh);
// item.setIcon(R.drawable.ic_menu_refresh);
// item.setAlphabeticShortcut('r');
final MenuInflater inf = getMenuInflater();
inf.inflate(getBaseMenu(), menu);
// SearchView searchView = (SearchView)
// menu.findItem(R.id.menu_search).getActionView();
// searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
return true;
}
abstract protected void refresh();
abstract protected void retry();
// abstract protected SvdrpClient<Result> getClient();
@Override
public boolean onOptionsItemSelected(final MenuItem item) {
if (mDrawerToggle != null && mDrawerToggle.onOptionsItemSelected(item)) {
return true;
}
switch (item.getItemId()) {
case R.id.list_refresh:
backupViewSelection();
refresh();
return true;
case R.id.list_filter: {
onSearchRequested();
return true;
}
case android.R.id.home:
final Intent intent = new Intent(this, VdrManagerActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
return true;
default:
return false;
}
}
protected void setCurrent(final Channel channel) {
getApp().setCurrentChannel(channel);
}
protected VdrManagerApp getApp() {
final VdrManagerApp app = (VdrManagerApp) getApplication();
return app;
}
// protected Channel getCurrentChannel(){
// final Channel channel = ((VdrManagerApp) getApplication())
// .getCurrentChannel();
// return channel;
// }
protected void say(final int res) {
say(this.getString(res));
}
protected void say(final String msg) {
Utils.say(this, msg);
}
protected boolean noConnection(final SvdrpEvent event) {
switch (event) {
case CONNECTION_TIMEOUT:
say(R.string.progress_connect_timeout);
switchNoConnection();
case CONNECT_ERROR:
say(R.string.progress_connect_error);
switchNoConnection();
break;
case FINISHED_ABNORMALY:
alert(R.string.progress_connect_finished_abnormal);
switchNoConnection();
break;
case LOGIN_ERROR:
say(R.string.progress_login_error);
switchNoConnection();
break;
default:
return false;
}
return true;
}
protected void alert(final String msg) {
if (isFinishing()) {
return;
}
new AlertDialog.Builder(this)//
.setMessage(msg)//
.setPositiveButton(android.R.string.ok, null)//
.create()//
.show();//
}
protected void alert(final int resId) {
alert(getString(resId));
}
protected void restoreViewSelection() {
listView.setSelectionFromTop(index, top);
}
protected void backupViewSelection() {
index = listView.getFirstVisiblePosition();
final View v = listView.getChildAt(0);
top = (v == null) ? 0 : v.getTop();
}
int index;
int top;
protected boolean checkInternetConnection() {
if (Utils.checkInternetConnection(this)) {
return true;
}
noInternetConnection();
return false;
}
// public void svdrpEvent(Result result) {
// resultReceived(result);
// }
@Override
public void svdrpEvent(final SvdrpEvent event, final Throwable t) {
progress.dismiss();
Utils.say(this, t.getMessage());
}
protected void addListener(
final SvdrpAsyncTask<Result, SvdrpClient<Result>> task) {
task.addSvdrpExceptionListener(this);
task.addSvdrpListener(this);
task.addSvdrpFinishedListener(this);
}
@Override
public void svdrpEvent(final SvdrpEvent event) {
switch (event) {
case LOGIN:
break;
case COMMAND_SENDING:
break;
case CONNECTING:
progress.setProgressStyle(ProgressDialog.STYLE_SPINNER);
setMessage(R.string.progress_connect);
if (!isFinishing()) {
progress.show();
}
break;
case LOGGED_IN:
setMessage(R.string.progress_login);
break;
case COMMAND_SENT:
setMessage(getProgressTextId());
break;
case DISCONNECTING:
setMessage(R.string.progress_disconnect);
break;
case DISCONNECTED:
break;
case ABORTED:
progress.dismiss();
say(R.string.aborted);
break;
case ERROR:
progress.dismiss();
alert(R.string.epg_client_errors);
break;
case CONNECTED:
connected();
break;
case CONNECTION_TIMEOUT:
case CONNECT_ERROR:
case FINISHED_ABNORMALY:
case LOGIN_ERROR:
progress.dismiss();
noConnection(event);
break;
case CACHE_HIT:
progress.dismiss();
cacheHit();
return;
case FINISHED_SUCCESS:
progress.dismiss();
break;
}
// case RESULT_RECEIVED:
// resultReceived(result);
// break;
// }
}
protected int getProgressTextId() {
return R.string.progress_loading;
}
private void setMessage(final int progressConnect) {
progress.setMessage(getString(progressConnect));
}
protected boolean finishedSuccess = false;
protected void cacheHit() {
}
/**
* @return false, if no results found
*/
protected abstract boolean finishedSuccess(List<Result> results);
// /**
// * @param result
// */
// protected abstract void resultReceived(Result result);
protected void connected() {
if (flipper != null) {
flipper.setDisplayedChild(0);
}
}
public void svdrpException(final SvdrpException exception) {
// svdrpException(exception);
// Log.w(TAG, exception);
alert(getString(R.string.vdr_error_text, exception.getMessage()));
}
@Override
protected void onDestroy() {
if (progress.isShowing()) {
progress.dismiss();
}
super.onDestroy();
}
@Override
public void finished(final List<Result> results) {
if (finishedSuccess(results)) {
finishedSuccess = true;
restoreViewSelection();
} else {
say(R.string.epg_no_items);
}
}
}
|