如何在 kotlin 中添加加载对话框
how add loading dialog in kotlin
我正在尝试在我的应用加载数据时添加加载对话框 json url 因为在午餐应用
数据到来之前显示空白屏幕
这是代码
inner class Dep : AsyncTask<String, String, String>(){
// 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?) {
val progressDialog = ProgressDialog(Context,this@MainActivity)
progressDialog.setMessage("loading")
progressDialog.setCancelable(false)
progressDialog.show()
super.onPostExecute(result)
handleJson(result)
if (progressDialog != null)
progressDialog.dismiss();
}
private fun handleJson (jsonString: String?){
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("departures")
// 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("departure")
))
x++
}
list.forEach(::println)
val adapter = ListAdapte(this@MainActivity,list)
flight_dep_list.adapter = adapter
}
// for get items from json api
override fun onProgressUpdate(vararg values: String?) {
}
}
我在 onPostExecute
中使用了进度对话框代码
override fun onPostExecute(result: String?) {
val progressDialog = ProgressDialog(Context,this@MainActivity)
progressDialog.setMessage("loading")
progressDialog.setCancelable(false)
progressDialog.show()
super.onPostExecute(result)
handleJson(result)
if (progressDialog != null)
progressDialog.dismiss();
}
我收到红线错误
classifier 'Context' dose not have a companion object , and thus must be initialized here
我需要添加进度对话框吗xml?
您需要像这样的 Context 实例 lateinit var context2 : Context 然后是 context2 = container!!.context 在您的 activity 或 Fragment 方法中,只需通过 ProgressDialog
传递 context2
我正在尝试在我的应用加载数据时添加加载对话框 json url 因为在午餐应用
数据到来之前显示空白屏幕这是代码
inner class Dep : AsyncTask<String, String, String>(){
// 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?) {
val progressDialog = ProgressDialog(Context,this@MainActivity)
progressDialog.setMessage("loading")
progressDialog.setCancelable(false)
progressDialog.show()
super.onPostExecute(result)
handleJson(result)
if (progressDialog != null)
progressDialog.dismiss();
}
private fun handleJson (jsonString: String?){
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("departures")
// 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("departure")
))
x++
}
list.forEach(::println)
val adapter = ListAdapte(this@MainActivity,list)
flight_dep_list.adapter = adapter
}
// for get items from json api
override fun onProgressUpdate(vararg values: String?) {
}
}
我在 onPostExecute
override fun onPostExecute(result: String?) {
val progressDialog = ProgressDialog(Context,this@MainActivity)
progressDialog.setMessage("loading")
progressDialog.setCancelable(false)
progressDialog.show()
super.onPostExecute(result)
handleJson(result)
if (progressDialog != null)
progressDialog.dismiss();
}
我收到红线错误
classifier 'Context' dose not have a companion object , and thus must be initialized here
我需要添加进度对话框吗xml?
您需要像这样的 Context 实例 lateinit var context2 : Context 然后是 context2 = container!!.context 在您的 activity 或 Fragment 方法中,只需通过 ProgressDialog
传递 context2