如何在片段中更改文本视图中的文本值。科特林

how to change the text value in a textview, whilst in a fragment. Kotlin

有谁知道在片段中更改文本视图文本值的方法。我试过 findviewbyid,但我相信这在碎片化时不起作用。有没有人知道如何识别文本视图并更改它的文本值。谢谢


class Home : Fragment() {

    override fun onCreateView(

        inflater: LayoutInflater, container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View? {
        // Inflate the layout for this fragment
        val view =  inflater.inflate(R.layout.fragment_home, container, false)

        val queue = Volley.newRequestQueue(view.context)
        val url = "https://io.adafruit.com/api/v2/alex9301/feeds/test-data/data" //URL
        var urlStuff = ""

        val stringRequest = StringRequest(Request.Method.GET, url,
            { response ->
                // Display the first 500 characters of the response string.
                urlStuff = response
                val jsonArray = JSONTokener(urlStuff).nextValue() as JSONArray
                val id = jsonArray.getJSONObject(0).getString("value") // Get data
                Log.i("Val: ", id)

                //Updating info on app
                val textView = view.findViewById(R.id.temp)                 
                textView.text = "My Text"


            },
            { Log.i("b", "That didn't work!") })
        queue.add(stringRequest)
        return view

    }


}

findViewById 也可以在片段中使用,如下所示:

val view =  inflater.inflate(R.layout.fragment_home, container, false)
val textView: TextView = view.findViewById(R.id.temp)
textView.text = "My Text"