Untitled

Anonymous
plain_text
02/28/2024 3:00 AM
708 B
14
Indexable
// MainActivity.kt

package com.example.myfirstapp

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.TextView

class MainActivity : AppCompatActivity() {
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        
        // Create a TextView
        val textView = TextView(this)
        textView.text = "Hello, World!"
        
        // Set the TextView as the content view for the activity
        setContentView(textView)
    }
}
Editor is loading...
Leave a Comment