AlertDialog内的垂直搜寻栏不起作用

时间:2019-02-01 17:41:34

标签: android alertdialog vertical-alignment seekbar

我想使用Alertdialog中的垂直搜寻栏为我的应用程序创建音量控件。 现在我有这个不好的结果:

https://drive.google.com/file/d/1qL0tv0hR__ZgY7xV3pRbehHJsQFOMK8Y/view?usp=sharing

这是我的实际代码:

public void volume() {
   AlertDialog.Builder popDialog = new AlertDialog.Builder(getContext());
   AlertDialog alertDialog = popDialog.create();

   final SeekBar seek = new SeekBar(getContext());
   seek.setRotation(90);

   alertDialog.setView(seek);

   alertDialog.show();
   alertDialog.getWindow().setLayout(300, 1000);  }

0 个答案:

没有答案