0
嗨,這是我的第一個應用程序。 我是一個初學者,當談到編程和android。 我的應用程序類似於twitter應用程序。但不是從twitter獲取值,它會從我的數據庫中獲取值。該應用程序將加載圖像和鏈接到網頁。Android - Json和TwitterFeed代碼
我的問題。 比方說,我的應用程序在應用程序商店,並有人下載它。 我的應用程序通過Json從我的mysql數據庫獲取大部分內容。每當我向數據庫添加新內容時,用戶都必須更新應用程序以獲取新內容,否則它會自動更新自己的內容。
有人可以看看我的代碼。我不清楚Async()和doInBackground()。如果您有任何其他有用的編碼建議,請讓我知道。我想在應用商店完成時將此應用放在應用商店中。
親切的問候
public class TwitterFeedActivity extends ListActivity {
private ArrayList<Tweet> tweets = new ArrayList<Tweet>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
new MyTask().execute();
}
private class MyTask extends AsyncTask<Void, Void, Void> {
private ProgressDialog progressDialog;
protected void onPreExecute() {
progressDialog = ProgressDialog.show(TwitterFeedActivity.this,
"", "Loading. Please wait...", true);
}
@Override
protected Void doInBackground(Void... arg0) {
try {
HttpClient hc = new DefaultHttpClient();
HttpGet get = new HttpGet("http://myurl.com");
HttpResponse rp = hc.execute(get);
if(rp.getStatusLine().getStatusCode() == HttpStatus.SC_OK)
{
String result = EntityUtils.toString(rp.getEntity());
JSONObject root = new JSONObject(result);
JSONArray sessions = root.getJSONArray("results");
for (int i = 0; i < sessions.length(); i++) {
JSONObject session = sessions.getJSONObject(i);
Tweet tweet = new Tweet();
tweet.n_text = session.getString("n_text");
tweet.n_name = session.getString("n_name");
tweet.Image = session.getString("Image");
tweets.add(tweet);
}
}
} catch (Exception e) {
Log.e("TwitterFeedActivity", "Error loading JSON", e);
}
return null;
}
@Override
protected void onPostExecute(Void result) {
progressDialog.dismiss();
setListAdapter(new TweetListAdaptor(TwitterFeedActivity.this, R.layout.list_item, tweets));
}
}
private class TweetListAdaptor extends ArrayAdapter<Tweet> {
private ArrayList<Tweet> tweets;
public TweetListAdaptor(Context context, int textViewResourceId, ArrayList<Tweet> items) {
super(context, textViewResourceId, items);
this.tweets = items;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.list_item, null);
}
final Tweet o = tweets.get(position);
TextView tt = (TextView) v.findViewById(R.id.toptext);
TextView bt = (TextView) v.findViewById(R.id.bottomtext);
ImageView image = (ImageView) v.findViewById(R.id.avatar);
bt.setText(o.n_name);
tt.setText(o.n_text);
image.setImageBitmap(getBitmap(o.Image));
image.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.setData(Uri.parse(o.n_text));
startActivity(intent);
}
});
return v;
}
}
public Bitmap getBitmap(String bitmapUrl) {
try {
URL url = new URL(bitmapUrl);
return BitmapFactory.decodeStream(url.openConnection().getInputStream());
}
catch(Exception ex) {return null;}
}
}
首先確保你是從高音揚聲器服務器得到響應或不在doInBackground中? –