Я использую код, который извлекает и показывает журнал изменений, если это первый запуск, просто так :).
Это хорошо работает на Android 2.3 и ниже, но при попытке на Custom ICS-ROM и на эмуляторе происходит сбой ...
if(lastVersion < currentVersion) {
InputStream content = null;
try {
HttpGet httpGet = new HttpGet("http://dreamhawk.blinkenshell.org/changelog.txt");
httpGet.setHeader("Content-Type", "text/plain; charset=utf-8");
HttpClient httpclient = new DefaultHttpClient();
// Execute HTTP Get Request
HttpResponse response = httpclient.execute(httpGet);
content = response.getEntity().getContent();
} catch (Exception e) {
//handle the exception !
}
if(content == null) {
lastVersion = Prefs.getInt("firstRun", -1);
Toast.makeText(Main.this,
"Failed fetching changelog on first run, connected to Internet?",
Toast.LENGTH_SHORT).show();
} else {
BufferedReader r = new BufferedReader(new InputStreamReader(content));
StringBuilder total = new StringBuilder();
String line;
String NL = System.getProperty("line.separator");
try {
while ((line = r.readLine()) != null) {
total.append(line + NL);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String page = total.toString();
Dialog dialog = new Dialog(Main.this);
dialog.setContentView(R.layout.custom_dialog);
dialog.setTitle(R.string.changelog);
dialog.setCanceledOnTouchOutside(true);
TextView text = (TextView) dialog.findViewById(R.id.text);
text.setTextSize(13);
text.setText(page);
dialog.show();
}
}
Видимо, содержимое равно нулю, и я нене знаю почему .. Так как он работает на других версиях для Android, я не знаю, что может быть не так ... Но, будучи нубом, я, вероятно, использую некоторые плохие коды ...
Хотите помочь?:)