Я думал, как открыть веб-просмотр весь день, когда щелкают строки в моем ListActivity Я даже не могу показать тост, когда на него нажимают. Нужна помощь
Я все еще новичок в Android, веб-разработчик, пытающийся учиться. Спасибо, прежде чем.
пакет com.mf.ar;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
импорт android.app.Activity;
import android.app.AlertDialog;
import android.app.ListActivity;
импорт android.os.Bundle;
импорт android.util.Log;
импорт android.view.View;
импорт android.view.Window;
import android.webkit.WebChromeClient;
импорт android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.ArrayAdapter;
импорт android.widget.Toast;
открытый класс ListViewer расширяет ListActivity {
приватная строка mJSON;
private String [] listRows;
приватная строка [] listRowsURI;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//setContentView(R.layout.listview);
Bundle the = getIntent().getExtras();
this.mJSON = the.getString("JSON");
Log.i("ListViewIntentJSON", this.mJSON);
try {
JSONObject UrbJSON = new JSONObject(mJSON);
JSONObject UrbQuery = UrbJSON.getJSONObject("query");
int rows = UrbQuery.getInt("row");
Log.i("UrbRows", String.format("%d",rows));
JSONArray resultArray = UrbJSON.getJSONArray("result");
this.listRows = new String[rows];
for(int i=0; i<rows; i++) {
this.listRows[i] = resultArray.getJSONObject(i).
getString("business_name").toString();
}
this.listRowsURI = new String[rows];
for(int i=0; i<rows; i++) {
this.listRowsURI[i] = resultArray.getJSONObject(i).
getString("business_uri_mobile").toString();
}
} catch(JSONException e) {
e.printStackTrace();
}
this.setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, ListViewer.this.listRows));
}
@Override
protected void onListItemClick(android.widget.ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
String theURI = ListViewer.this.listRowsURI[position].toString();
/*String theURI = ListViewer.this.listRowsURI[position].toString();
//String theURI = "http://www.mediafusion.web.id";
WebView webview = new WebView(this);
//setContentView(webview);
//addContentView(webview, null);
webview.getSettings().setJavaScriptEnabled(true);
getWindow().requestFeature(Window.FEATURE_PROGRESS);
final Activity activity = this;
webview.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
// Activities and WebViews measure progress with different scales.
// The progress meter will automatically disappear when we reach 100%
activity.setProgress(progress * 1000);
}
});
webview.setWebViewClient(new WebViewClient() {
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
Toast.makeText(activity, "Oh no! " + description, Toast.LENGTH_SHORT).show();
}
});
webview.loadUrl(theURI);*/
Toast.makeText(ListViewer.this.getApplicationContext(), theURI, Toast.LENGTH_SHORT);
}
}