当前位置: 首页>>代码示例>>Java>>正文


Java AlertDialog.setTitle方法代码示例

本文整理汇总了Java中android.app.AlertDialog.setTitle方法的典型用法代码示例。如果您正苦于以下问题:Java AlertDialog.setTitle方法的具体用法?Java AlertDialog.setTitle怎么用?Java AlertDialog.setTitle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.app.AlertDialog的用法示例。


在下文中一共展示了AlertDialog.setTitle方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onCreate

import android.app.AlertDialog; //导入方法依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    Boolean isFlashAvailable = getApplicationContext().getPackageManager().hasSystemFeature(PackageManager.FEATURE_CAMERA_FLASH);
    if (!isFlashAvailable) {
        AlertDialog alert = new AlertDialog.Builder(MainActivity.this).create();
        alert.setTitle(getString(R.string.app_name));
        alert.setMessage("Error");
        alert.setButton(DialogInterface.BUTTON_POSITIVE, "OK", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
                finish();
            }
        });
        alert.show();
    }

    Intent i = new Intent(this, BackgroundService.class);
    startService(i);
    Log.d("ProjectLumen","loaded");

}
 
开发者ID:indianpoptart,项目名称:ProjectLumen,代码行数:25,代码来源:MainActivity.java

示例2: deleteAllCalls

import android.app.AlertDialog; //导入方法依赖的package包/类
private void deleteAllCalls() {
    AlertDialog alertDialog = new AlertDialog.Builder(getActivity()).create();
    alertDialog.setTitle(R.string.callLog_delDialog_title);
    alertDialog.setMessage(getString(R.string.callLog_delDialog_message));
    alertDialog.setButton(AlertDialog.BUTTON_POSITIVE, getString(R.string.callLog_delDialog_yes),
            new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {
                    getActivity().getContentResolver().delete(SipManager.CALLLOG_URI, null,
                            null);
                }
            });
    alertDialog.setButton(AlertDialog.BUTTON_NEGATIVE, getString(R.string.callLog_delDialog_no),
            (DialogInterface.OnClickListener) null);
    try {
        alertDialog.show();
    } catch (Exception e) {
        Log.e(THIS_FILE, "error while trying to show deletion yes/no dialog");
    }
}
 
开发者ID:treasure-lau,项目名称:CSipSimple,代码行数:20,代码来源:CallLogListFragment.java

示例3: onBind

import android.app.AlertDialog; //导入方法依赖的package包/类
@Override
public IBinder onBind(Intent intent) {

    // First check if device has a light sensor or not
    HasLightSensor = getApplicationContext().getPackageManager()
            .hasSystemFeature(PackageManager.FEATURE_SENSOR_LIGHT);

    if (!HasLightSensor) {
        // device doesn't support light sensor
        // Show alert message and close the application
        AlertDialog alert = new AlertDialog.Builder(cSunService.this)
                .create();
        alert.setTitle("Error");
        alert.setMessage("Sorry, your device doesn't support SUN! as it has no light sensor");
    } else
        getBrightMode(getContentResolver());

    return null;
}
 
开发者ID:hamedbaatour,项目名称:cSun,代码行数:20,代码来源:cSunService.java

示例4: commonAlertDialog

import android.app.AlertDialog; //导入方法依赖的package包/类
public static void commonAlertDialog(Context parent, String title, String message) {

        AlertDialog alertDialog = new AlertDialog.Builder(parent, AlertDialog.THEME_HOLO_DARK).create();
        alertDialog.setTitle(title);

        alertDialog.setMessage(Html.fromHtml(message));
        alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int which) {
                        dialog.dismiss();
                    }
                }
        );

        alertDialog.show();
    }
 
开发者ID:Samsung,项目名称:microbit,代码行数:17,代码来源:CommonGUI.java

示例5: showAlertDialog

import android.app.AlertDialog; //导入方法依赖的package包/类
public void showAlertDialog(Context context, String title, String message,
                            Boolean status) {
    AlertDialog alertDialog = new AlertDialog.Builder(context).create();
    alertDialog.setTitle(title);
    alertDialog.setMessage(message);
    if(status != null)
        alertDialog.setIcon((status) ? R.drawable.success : R.drawable.fail);
        alertDialog.setButton("Тийм", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int which) {
        }
    });
    alertDialog.show();
}
 
开发者ID:tortuvshin,项目名称:actions,代码行数:14,代码来源:AlertDialogManager.java

示例6: alert

import android.app.AlertDialog; //导入方法依赖的package包/类
public static void alert(final Object context,
    final String message, final String title,final String buttonText) {
  Log.i("RuntimeErrorAlert", "in alert");
  AlertDialog alertDialog = new AlertDialog.Builder((Context) context).create();
  alertDialog.setTitle(title);
  alertDialog.setMessage(message);
  alertDialog.setButton(buttonText, new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
      ((Activity) context).finish();
    }});
  if (message == null) {
    // Avoid passing null to Log.e, which would cause a NullPointerException.
    Log.e(RuntimeErrorAlert.class.getName(), "No error message available");
  } else {
    Log.e(RuntimeErrorAlert.class.getName(), message);
  }
  alertDialog.show();
}
 
开发者ID:mit-cml,项目名称:appinventor-extensions,代码行数:19,代码来源:RuntimeErrorAlert.java

示例7: onRequestPermissionsResult

import android.app.AlertDialog; //导入方法依赖的package包/类
@Override
public void onRequestPermissionsResult(int requestCode,
                                       String permissions[], int[] grantResults) {
    switch (requestCode) {
        case MY_PERMISSIONS_REQUEST_LOCATION: {
            // If request is cancelled, the result arrays are empty.
            if (grantResults.length > 0
                    && grantResults[0] == PackageManager.PERMISSION_GRANTED) {

                // permission was granted
                if (ContextCompat.checkSelfPermission(this,
                        android.Manifest.permission.ACCESS_FINE_LOCATION)
                        == PackageManager.PERMISSION_GRANTED) {
                    if (mGoogleApiClient == null) {
                        buildGoogleApiClient();
                    }
                    mMap.setMyLocationEnabled(true);
                }
            } else {
                // Permission denied, show alert
                AlertDialog alertDialog = new AlertDialog.Builder(MainActivity.this).create();
                alertDialog.setTitle("Alert");
                alertDialog.setMessage("Please allow the location permission!");
                alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
                        new DialogInterface.OnClickListener() {
                            public void onClick(DialogInterface dialog, int which) {
                                dialog.dismiss();
                                checkLocationPermission();
                            }
                        });
                alertDialog.show();
            }
            return;
        }
    }
}
 
开发者ID:armendu,项目名称:traffic-report-android,代码行数:37,代码来源:MainActivity.java

示例8: createRateDialog

import android.app.AlertDialog; //导入方法依赖的package包/类
public static Dialog createRateDialog(Context context,
                                      DialogInterface.OnClickListener onClickListener) {
    AlertDialog rateDialog = new AlertDialog.Builder(context).create();
    rateDialog.setTitle(context.getString(R.string.dialog_rate_app_title));
    rateDialog.setMessage(context.getString(R.string.dialog_rate_app_text));
    rateDialog.setButton(AlertDialog.BUTTON_POSITIVE, context.getString(R.string.dialog_positive_button_text), onClickListener);
    rateDialog.setButton(AlertDialog.BUTTON_NEGATIVE, context.getString(R.string.dialog_negative_button_text), onClickListener);
    rateDialog.setButton(AlertDialog.BUTTON_NEUTRAL, context.getString(R.string.dialog_neutral_button_text), onClickListener);
    return rateDialog;
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:11,代码来源:DialogFactory.java

示例9: showAlert

import android.app.AlertDialog; //导入方法依赖的package包/类
/**
 * 展示一个通用的弹出框UI
 *
 * @param context 展示弹出框的上下文环境
 * @param title   警告的title信息
 * @param text    警告信息
 */
public static void showAlert(Context context, String title, String text) {
    AlertDialog alertDialog = new Builder(context).create();
    alertDialog.setTitle(title);
    alertDialog.setMessage(text);
    alertDialog.setCanceledOnTouchOutside(true);
    alertDialog.show();
}
 
开发者ID:dueros,项目名称:dcs-sdk-java,代码行数:15,代码来源:CommonUtil.java

示例10: showErrorDialog

import android.app.AlertDialog; //导入方法依赖的package包/类
private void showErrorDialog(String message) {
    AlertDialog alertDialog = new AlertDialog.Builder(this).create();
    alertDialog.setTitle("Error!");
    alertDialog.setMessage(message);
    alertDialog.setIcon(android.R.drawable.alert_dark_frame);
    alertDialog.setButton(DialogInterface.BUTTON_POSITIVE, "OK", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int which) {
            MainActivity.this.finish();
        }
    });

    alertDialog.show();
}
 
开发者ID:PacktPublishing,项目名称:Java-9-Programming-Blueprints,代码行数:15,代码来源:MainActivity.java

示例11: renameFile

import android.app.AlertDialog; //导入方法依赖的package包/类
/**
 * Allows to rename file by given file path and a new file name.
 *
 * @param filePath Full path to the file.
 * @param newName  New name of the file.
 */
public void renameFile(String filePath, String newName) {

    FileUtils.RenameResult renameResult = FileUtils.renameFile(filePath, newName);
    if(renameResult != FileUtils.RenameResult.SUCCESS) {
        AlertDialog alertDialog = new AlertDialog.Builder(this).create();
        alertDialog.setTitle("Alert");

        String message = "OOPS!";
        switch(renameResult) {
            case NEW_PATH_ALREADY_EXIST:
                message = "Cannot rename, destination file already exists.";
                break;

            case OLD_PATH_NOT_CORRECT:
                message = "Cannot rename, source file not exist.";
                break;

            case RENAME_ERROR:
                message = "Rename operation failed.";
                break;
        }

        alertDialog.setMessage(message);
        alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
                new DialogInterface.OnClickListener() {
                    public void onClick(DialogInterface dialog, int which) {
                        dialog.dismiss();
                    }
                });

        alertDialog.show();
    } else {
        updateProjectsListSortOrder(true);
    }
}
 
开发者ID:Samsung,项目名称:microbit,代码行数:42,代码来源:ProjectActivity.java

示例12: showAlertDialog

import android.app.AlertDialog; //导入方法依赖的package包/类
private void showAlertDialog(String message) {
    AlertDialog alertDialog = new AlertDialog.Builder(this).create();
    alertDialog.setTitle("Alert");
    alertDialog.setMessage(message);
    alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
            new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {
                    dialog.dismiss();
                }
            });
    alertDialog.show();
}
 
开发者ID:freeloki,项目名称:AndroidThings-BurglarAlarm,代码行数:13,代码来源:BurglarActivity.java

示例13: oneButtonAlert

import android.app.AlertDialog; //导入方法依赖的package包/类
public static void oneButtonAlert(Activity activity,String message, String title, String buttonText) {
  Log.i(LOG_TAG, "One button alert " + message);
  AlertDialog alertDialog = new AlertDialog.Builder(activity).create();
  alertDialog.setTitle(title);
  // prevents the user from escaping the dialog by hitting the Back button
  alertDialog.setCancelable(false);
  alertDialog.setMessage(stringToHTML(message));
  alertDialog.setButton(DialogInterface.BUTTON_NEUTRAL,
      buttonText, new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {
    }});
  alertDialog.show();
}
 
开发者ID:mit-cml,项目名称:appinventor-extensions,代码行数:14,代码来源:Notifier.java

示例14: showAlert

import android.app.AlertDialog; //导入方法依赖的package包/类
/**
 * Show dialog
 * @param context Context
 * @param title Title
 * @param layoutResource Layout resource id
 * @param iconResource Icon resource id
 * @return AlertDialog Dialog
 */
static AlertDialog showAlert(Context context, CharSequence title, int layoutResource, int iconResource) {
    @SuppressLint("InflateParams")
    View view = ((Activity) context).getLayoutInflater().inflate(layoutResource, null, false);
    AlertDialog alertDialog = new AlertDialog.Builder(context).create();
    alertDialog.setTitle(title);
    alertDialog.setView(view);
    if (iconResource > 0) {
        alertDialog.setIcon(iconResource);
    }
    alertDialog.show();
    return alertDialog;
}
 
开发者ID:bfabiszewski,项目名称:ulogger-android,代码行数:21,代码来源:Alert.java

示例15: showInfo

import android.app.AlertDialog; //导入方法依赖的package包/类
/**
 * Shows an info dialog.
 * 
 * @param context
 *            {@link Context}
 * @param msg
 *            the message.
 * @param listener
 *            the {@link DialogInterface.OnDismissListener}.
 */
public static void showInfo(Context context, CharSequence msg,
        DialogInterface.OnDismissListener listener) {
    AlertDialog dlg = newAlertDlg(context);
    dlg.setIcon(android.R.drawable.ic_dialog_info);
    dlg.setTitle(R.string.afc_title_info);
    dlg.setMessage(msg);
    dlg.setOnDismissListener(listener);
    dlg.show();
}
 
开发者ID:PhilippC,项目名称:keepass2android,代码行数:20,代码来源:Dlg.java


注:本文中的android.app.AlertDialog.setTitle方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。