3
是否可以獲取應用上次更新的日期? 我想表明它在應用程序是這樣的:Android應用獲取上次更新日期
String htmltext = "E-mail: " + Datacontainer.Instance().GetDatabaseHelper().GetUserEmail() +
"<br>Authorized: " + is_auth +
"<br>Last updated on: " + "?" +
"<br>Tips version: " + "228" +
"<br>App version: " + "v 1.3.0" +
"<br>Your Airline: " + "?" +
"<br>Your Nickname: " + "?" +
"<br>No of tips submitted: " + "?";
TextView infotext = (TextView)fragmentView.findViewById(R.id.infotext);
infotext.setText(Html.fromHtml(htmltext));