2
buildToolsVersion「23.0.3」は垂直の向き
targetSdkVersionに示されている23私はandroid.support.v7.app.AlertDialog
は、ボタンが縦向きで示されている私の上の3つのボタンを追加しようとしました
(やないでhorinzontal)。それはバグですか?ここで
は私のコードです:
new AlertDialog.Builder(context)
.setMessage("My message")
.setPositiveButton("Positive Button", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
}
})
.setNegativeButton("Negative Button", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
}
})
.setNeutralButton("Neutral Button", new DialogInterface.OnClickListener()
{
@Override
public void onClick(DialogInterface dialog, int which)
{
}
})
.show();
にそれを受け入れているので、それがあります答えとして: –
私は短い名前とまだ垂直の2つだけのボタンがあります – fullMoon