这是我的代码:
public void create_dialoginfo()
{
AlertDialog.Builder alert = new AlertDialog.Builder(main.this);
alert.setTitle("911 Info");
alert.setMessage(
"Button Description: " +
"" +
"1. Calls 911 " +
"2. Sends GPS Cordinates to Contact " +
"3. Activates a monitored call " +
"4. Activates alarm and captures images to web for viewing");
alert.setPositiveButton("Ok", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface dialog, int which)
{
// TODO Auto-generated method stub
}
});
alert.create();
alert.show();
}
已创建“警报”框,但没有行间距,您使用什么来创建行间距?
答案 0 :(得分:0)
使用\ n作为下一行
AlertDialog.Builder alert = new AlertDialog.Builder(this);
alert.setTitle("911 Info");
alert.setMessage("Button Description: \n1. Calls 911\n2. Sends GPS Cordinates to Contact\n3. Activates a monitored call\n4. Activates alarm and captures images to web for viewing");
alert.setPositiveButton("Ok",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
// TODO Auto-generated method stub
}
});
alert.create();
alert.show();