kotlin - 隐藏kotlin中的警报对话框

标签 kotlin

我当前的项目是从服务器下载数据的时间,我想显示一个进度条,以便用户知道发生了什么。我有一个简单的警报对话框,我试图在为用户加载json数据时添加警报对话框。当我启动应用程序时,即使数据已经加载并且没有隐藏,警报对话框仍然停留在屏幕上。

AsyncTask代码:

  inner class Arr : AsyncTask<String, String, String>(){

        val progressDialog = AlertDialog.Builder(this@MainActivity)
        val dialogView = layoutInflater.inflate(R.layout.progress_dialog,null)
        val message = dialogView.findViewById<TextView>(R.id.message_id)
        val dialog = progressDialog.create()


        override fun onPreExecute() {
            super.onPreExecute()

            progressDialog.setMessage("loading")
            progressDialog.setCancelable(false)
            progressDialog.show()


        }

        //        for build connection
        override fun doInBackground(vararg url: String?): String{

            var text : String
            val connection = URL(url[0]).openConnection() as HttpURLConnection

            try {
                connection.connect()
                text = connection.inputStream.use { it.reader().use{reader -> reader.readText()} }


            } finally{

                connection.disconnect()

            }
            return text
        }

        override fun onPostExecute(result: String?) {

            super.onPostExecute(result)
            handleJson(result)

                dialog.dismiss()


        }

        override fun onProgressUpdate(vararg text: String?) {
                dialog.dismiss()

        }
        private fun handleJson (jsonString: String?){
            dialog.dismiss()

            val jsonObj = JSONObject(jsonString)
            val result = jsonObj.getJSONObject("result")
            val response = result.getJSONObject("response")
            val airport = response.getJSONObject("airport")
            val pluginData = airport.getJSONObject("pluginData")
            val schedule = pluginData.getJSONObject("schedule")
            val arrivals = schedule.getJSONObject("arrivals")
//        val data = arrivals.getJSONObject("data")
            val jsonArray = JSONArray(arrivals.get("data").toString())

            val list =  ArrayList<FlightShdu>()
            var x = 0
            while (x < jsonArray.length()){

                val jsonObject = jsonArray.getJSONObject(x)



                list.add(FlightShdu(

                    jsonObject.getJSONObject("flight").getJSONObject("identification").getJSONObject("number").getString("default"),
                    jsonObject.getJSONObject("flight").getJSONObject("airline").getString("name"),
                    jsonObject.getJSONObject("flight").getJSONObject("status").getString("text"),
                    jsonObject.getJSONObject("flight").getJSONObject("airline").getJSONObject("code").getString("icao"),
                   jsonObject.getJSONObject("flight").getJSONObject("time").getJSONObject("scheduled").getString("arrival")


                ))


                x++
            }
            list.forEach(::println)

            val adapter = ListAdapte(this@MainActivity,list)
            flight_arrivel_list.adapter = adapter

        }




    } // 

有什么解决办法吗?

最佳答案

更改为此:

override fun onPreExecute() {
    super.onPreExecute()

    dialog.setMessage("loading")
    dialog.setCancelable(false)
    dialog.show()
}

并隐藏它:
dialog.dismiss();

您必须引用AlertDialog对象,而不是AlertDialog.Builder

关于kotlin - 隐藏kotlin中的警报对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53226644/

相关文章:

android - Android导航组件Deeplink Backstack

kotlin - 如何在带有ktor框架的graphql-kotlin中进行字段级解析器

java - Android Studio Sdk更新失败

kotlin - 如何在这里使用 lambda 表达式?

android - 如何在我只需要更改 Activity 而不在 Intent 中添加任何内容的情况下抽象更改 Activity 逻辑?

android - 实时数据中的 Observables 更新在 fragment 中不起作用

algorithm - 用于技术分析指标的 Kotlin

KotlinJvmOptions useIR 选项

gradle - 如何将 Kotlin 源码的测试报告上传到 Coveralls?

android - 是否可以使用 XML 布局中的数据绑定(bind)访问为 TextView 编写的扩展函数?