File tree 3 files changed +9
-0
lines changed
android/CCNx-Android-Services
src/org/ccnx/android/services
3 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 4
4
android : title =" @string/label_reset" />
5
5
<item android : id =" @+id/about"
6
6
android : title =" @string/label_about" />
7
+ <item android : id =" @+id/ccndstatus"
8
+ android : title =" @string/label_ccndstatus" />
7
9
</menu >
Original file line number Diff line number Diff line change 27
27
<string name =" label_ccns_debug" >CCNS_DEBUG:</string >
28
28
<string name =" label_about" >About</string >
29
29
<string name =" label_reset" >Reset Service</string >
30
+ <string name =" label_ccndstatus" >CCND Status</string >
30
31
<string name =" label_ok" >OK</string >
31
32
<string name =" service_started1_msg" >CCNx Service Control started</string >
32
33
<string name =" about_text" >CCNx 0.6.2\n/*
Original file line number Diff line number Diff line change 47
47
import android .widget .EditText ;
48
48
import android .widget .Toast ;
49
49
import android .widget .Spinner ;
50
+ import android .net .Uri ;
50
51
51
52
import java .net .InetAddress ;
52
53
import java .net .NetworkInterface ;
58
59
*/
59
60
public final class Controller extends Activity implements OnClickListener {
60
61
public final static String TAG = "CCNx Service Controller" ;
62
+ public static final String CCNX_WS_URL = "http://127.0.0.1:9695" ;
61
63
private Button mAllBtn ;
62
64
private ProgressDialog pd ;
63
65
@@ -167,6 +169,10 @@ public boolean onOptionsItemSelected(MenuItem item) {
167
169
Toast .makeText (this , "Reset CCNxServiceStatus complete, new status is: {ccnd: " + control .getCcndStatus ().name () +
168
170
", repo: " + control .getRepoStatus ().name () + "}" , 10 ).show ();
169
171
return true ;
172
+ case R .id .ccndstatus :
173
+ Intent intent = new Intent (Intent .ACTION_VIEW , Uri .parse (CCNX_WS_URL ));
174
+ startActivity (intent );
175
+ return true ;
170
176
case R .id .about :
171
177
setContentView (R .layout .aboutview );
172
178
TextView aboutdata = (TextView ) findViewById (R .id .about_text );
You can’t perform that action at this time.
0 commit comments