我使用這個代碼,以檢查是否播放服務是availble的更改PlayServices警報文本
public static boolean checkPlayServices(Context context, boolean showDialog) {
int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(context);
if (resultCode != ConnectionResult.SUCCESS) {
if (showDialog) {
if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
Dialog dialog = GooglePlayServicesUtil.getErrorDialog(resultCode, (BaseActivity) context, GooglePlayServicesUtil.GOOGLE_PLAY_SERVICES_VERSION_CODE);
dialog.show();
} else {
Log.d("FUApp", "This device is not supported.");
//finish();
}
}
return false;
}
return true;
}
是否有可能改變對話文本,而無需創建一個新的對話?
的原因是我只想顯示,如果他們試圖利用這需要發揮服務功能,以及目前的案文說This app wont work...
,而我希望它說錯誤This feature wont work...
你只需要導入庫項目操縱文本,而不是使用它的jar文件。我發佈了一個答案。 –