]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/util/IntentLauncher.java
Long-press on lang button shows list.
[Dictionary.git] / src / com / hughes / android / util / IntentLauncher.java
1 package com.hughes.android.util;
2
3 import android.content.Context;
4 import android.content.Intent;
5 import android.view.View;
6 import android.view.View.OnClickListener;
7
8 public class IntentLauncher implements OnClickListener {
9   
10   final Context context;
11   final Intent intent;
12   
13   public IntentLauncher(final Context context, final Intent intent) {
14     this.context = context;
15     this.intent = intent;
16   }
17
18   protected void onGo() {
19   }
20
21
22   private void go() {
23     onGo();
24     context.startActivity(intent);
25   }
26
27   @Override
28   public void onClick(View v) {
29     go();
30   }
31   
32   
33
34 }