Loading...
By KarnatakaPUCS Team on 7/10/2026
Android development offers great career opportunities. Start building apps with Kotlin.
kotlinpackage com.example.myapp import android.os.Bundle import androidx.appcompat.app.AppCompatActivity import android.widget.TextView class MainActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val textView = findViewById<TextView>(R.id.textView) textView.text = "Hello, Android!" } }
xml<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center"> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="24sp" /> </LinearLayout>
Screens in your app
Reusable UI components
Navigate between screens
Display lists efficiently