我是android新手。我目前的任务是为我的客户创建一个应用程序。我正在使用Tab布局,当单击其中一个选项卡时,我想显示带有微调器的弹出窗口。我提到了一些示例教程,但我无法实现它。请帮我提供示例代码。
提前致谢。 Vinodh.G
答案 0 :(得分:0)
使用其中的微调器创建自定义视图。然后创建一个对话框并将对话框的视图设置为自定义视图
LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.custom_dialog, null);
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setView(layout);
AlertDialog CustomDialog = builder.create();