Android RSSリーダーを開発しました。タブレイアウトを作成し、ニュースの種類(ヘッドライン、国内、国際など)ごとに各タブを作成しました。
次に、タブレイアウトの最初のページのカスタムリストビューにRSSタイトルとその画像をリストしました。下の画像を参照してください。
これで、ユーザーがニュースタイトルをクリックすると、ニュースの説明を含む別のアクティビティ(ページ)が開きます。
私の問題は、ユーザーがタブをクリックしてロードしたときに、インターネット接続が利用できない場合に、[再試行]と[終了]の2つのボタンがあるダイアログボックスを表示したいということです。
ユーザーが[再試行]をクリックすると、アクティビティを再読み込みする必要があります。メソッド(if(International.Title == null))を使用しましたが、これを行うのに適切なメソッドとは思いません。ネットワークが利用可能かどうかを確認しています...
これが私のコードです、
public class International extends Activity {
static final String URL = "http://www.abcd.com/en/taxonomy/term/3/0/feed";
static final String KEY_HEAD = "item";
static final String KEY_DATE = "pubDate";
ListView list;
InternationalAdapter adapter;
public static String[] Title;
public static String[] Description;
public static String[] image;
public static String[] Date;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.headlines);
Bundle mybundle = new Bundle();
mybundle.putString("number", "0");
new DoInBackground().execute();
}
public void do_update()
{
internationalparser.parse();//this is the function to parse RSS feeds
}
public void populate_listview()
{
ArrayList<HashMap<String, String>> newsList = new ArrayList<HashMap<String, String>>();
XMLParser parser = new XMLParser();
String xml = parser.getXmlFromUrl(URL); // getting XML from URL
Document doc = parser.getDomElement(xml); // getting DOM element
NodeList nl = doc.getElementsByTagName(KEY_HEAD);
// looping through all song nodes <song>
NodeList itemLst = doc.getElementsByTagName("item");
for (int i = 0; i < nl.getLength(); i++) {
// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();
Element e = (Element) nl.item(i);
//map.put(KEY_DATE, parser.getValue(e, KEY_DATE));
newsList.add(map);
}
list=(ListView)findViewById(R.id.list);
// Getting adapter by passing xml data ArrayList
adapter=new InternationalAdapter(this, newsList);
list.setAdapter(adapter);
// Click event for single list row
list.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view,
int position, long id) {
Intent myintent = new Intent("com.abcd.rssreaderinternationalpodcast.PODCAST");
Bundle mybundle = new Bundle();
mybundle.putInt("number", position);
myintent.putExtras(mybundle);
startActivity(myintent);
}
});
}
private class DoInBackground extends AsyncTask<Void, Void, Void>
implements DialogInterface.OnCancelListener
{
private ProgressDialog dialog;
private Intent intent;
private Intent intent2;
public void onPreExecute()
{
dialog = ProgressDialog.show(International.this, "", "Loading", true);
}
protected Void doInBackground(Void... unused)
{
do_update();
return null;
}
public void retry()
{
internationalparser.parse();
}
protected void onPostExecute(Void unused)
{
if(International.Title!=null)
{
dialog.dismiss();
populate_listview();
}
if(International.Title==null) ///this is what I tried.
{
dialog.dismiss();
AlertDialog.Builder alertbox = new AlertDialog.Builder(International.this);
alertbox.setMessage("Error in connection!");
alertbox.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface arg0, int arg1) {
retry(); //here i want to reload activity
}
});
alertbox.setNegativeButton("Exit", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface arg0, int arg1) {
finish();
}
});
alertbox.show();
}
}
public void onCancel(DialogInterface dialog)
{
cancel(true);
dialog.dismiss();
}
}
}