Untitled Document
Untitled Document
xml
<resources>
<string name="app_name">UIComponents</string>
<string-array name="course">
<item>BSC IT</item>
<item>BSc CS</item>
<item>BCA</item>
<item>BE</item>
</string-array>
</resources>
Register.kt
package com.example.ui_components
import android.content.Intent
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.view.View
import android.widget.*
// Reference UI Components
val cancel = findViewById<Button>(R.id.btncancel)
val submit = findViewById<Button>(R.id.btnsubmit)
val nm = findViewById<EditText>(R.id.txtname)
val rdgen = findViewById<RadioGroup>(R.id.rdgender)
val chkeng = findViewById<CheckBox>(R.id.chkeng)
val chkmar = findViewById<CheckBox>(R.id.chkmarathi)
val chkhin = findViewById<CheckBox>(R.id.chkhindi)
val data = findViewById<TextView>(R.id.txtop)
val mycourse = findViewById<Spinner>(R.id.spncourse)
MainActivity.kt
package com.example.ui_components
import android.content.Intent
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.Button
Activity _register.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:background="@drawable/screen3"
android:orientation="vertical"
android:padding="15dp">