Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ public void onClick(View v) {
}
catch(Exception e){
Log.d("Exception Intent", e.toString());
Log.e("comment" , "hello there");
}

}
Expand All @@ -115,6 +116,7 @@ public void onClick(View v) {
public static Context getContext() {
return context;
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
Expand Down Expand Up @@ -149,6 +151,7 @@ class AsyncTaskRunner extends AsyncTask<String, String, String> {
@Override
protected String doInBackground(String... arg0) {
// TODO Auto-generated method stub

HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost(domain+arg0[6]);

Expand Down