zoro-10

AMP

Mar 28th, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 38.05 KB | None | 0 0
  1. ------------------------------ PRACTICAL 1 --------------------------------
  2. 1. Introduction to Android, Introduction to Android Studio IDE, Application Fundamentals:
  3. Creating a Project, Android Components, Activities, Services, Content Providers,
  4. Broadcast Receivers, Interface overview, Creating Android Virtual device, USB
  5. debugging mode, Android Application Overview. Simple “Hello World” program.
  6.  
  7. Solution:
  8. Creating a project:  
  9. MainActivity.Kt :
  10. package com.example.myapplication1
  11. import android.os.Bundle
  12. import androidx.activity.enableEdgeToEdge
  13. import androidx.appcompat.app.AppCompatActivity
  14. import androidx.core.view.ViewCompat
  15. import androidx.core.view.WindowInsetsCompat
  16. class MainActivity : AppCompatActivity() {
  17. override fun onCreate(savedInstanceState: Bundle?) {
  18. super.onCreate(savedInstanceState)
  19. enableEdgeToEdge()
  20. setContentView(R.layout.activity_main)
  21. ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
  22. val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
  23. v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
  24. insets
  25. }
  26. }
  27. }
  28.  
  29. activity_main.xml:
  30. <?xml version="1.0" encoding="utf-8"?>
  31. <androidx.constraintlayout.widget.ConstraintLayout
  32. xmlns:android="http://schemas.android.com/apk/res/android"
  33. xmlns:app="http://schemas.android.com/apk/res-auto"
  34. xmlns:tools="http://schemas.android.com/tools"
  35. android:id="@+id/main"
  36. android:layout_width="match_parent"
  37. android:layout_height="match_parent"
  38. tools:context=".MainActivity">
  39. <TextView
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:text="Hello World!"
  43. app:layout_constraintBottom_toBottomOf="parent"
  44. app:layout_constraintEnd_toEndOf="parent"
  45. app:layout_constraintStart_toStartOf="parent"
  46. app:layout_constraintTop_toTopOf="parent" />
  47. </androidx.constraintlayout.widget.ConstraintLayout>
  48.  
  49. APK in avd:
  50. BroadcastActivity:
  51. How to receiving Broadcast
  52. Apps can receive and android BroadcastReceiver in two ways: through manifest-declared
  53. receivers and context-registered receivers. In this example, we are approaching manifest-
  54. declared Receiver. Learn step by step to the kotlin broadcast receiver example works.
  55. Step 1. Create an android app, For creating an Android app with kotlin read this tutorial.
  56. Step 2. Creating Broadcast Receiver
  57. Create and extend Subclass and BroadcastReceiver implement. onReceive(Context, Intent)
  58. where onReceive method each message is received as an Intent object parameter.
  59.  
  60. MainActivity.kt:
  61. package com.example.myapplication8
  62. import android.content.BroadcastReceiver
  63. import android.content.Context
  64. import android.content.Intent
  65. import android.os.Bundle
  66. import android.widget.Toast
  67. import androidx.activity.enableEdgeToEdge
  68. import androidx.appcompat.app.AppCompatActivity
  69. import android.content.IntentFilter
  70. class MainActivity : AppCompatActivity() {
  71. private lateinit var airplaneModeReceiver: BroadcastReceiver
  72. override fun onCreate(savedInstanceState: Bundle?) {
  73. super.onCreate(savedInstanceState)
  74. enableEdgeToEdge()
  75. setContentView(R.layout.activity_main)
  76. airplaneModeReceiver = object : BroadcastReceiver() {
  77. override fun onReceive(context: Context?, intent: Intent?) {
  78. if (intent?.action == Intent.ACTION_AIRPLANE_MODE_CHANGED) {
  79. val isAirplaneModeOn = intent.getBooleanExtra("state", false)
  80. if (isAirplaneModeOn) {
  81. Toast.makeText(context, "Airplane Mode Enabled",
  82. Toast.LENGTH_SHORT).show()
  83. } else {
  84. Toast.makeText(context, "Airplane Mode Disabled",
  85. Toast.LENGTH_SHORT).show()
  86. }
  87. }
  88. }
  89. }
  90. // Register Broadcast Receiver
  91. val filter = IntentFilter(Intent.ACTION_AIRPLANE_MODE_CHANGED)
  92. registerReceiver(airplaneModeReceiver, filter)
  93. }
  94. override fun onDestroy() {
  95. super.onDestroy()
  96. unregisterReceiver(airplaneModeReceiver)  // Unregister receiver when activity is
  97. destroyed
  98. }
  99. }
  100.  
  101. broadcast.kt: package com.example.myapplication8
  102. import android.content.BroadcastReceiver
  103. import android.content.Context
  104. import android.content.Intent
  105. import android.widget.Toast
  106. class broadcast : BroadcastReceiver() {
  107. override fun onReceive(context: Context?, intent: Intent?) {
  108. if (intent?.action == Intent.ACTION_AIRPLANE_MODE_CHANGED) {
  109. val isAirplaneModeOn = intent.getBooleanExtra("state", false)
  110. if (isAirplaneModeOn) {
  111. Toast.makeText(context, "Airplane Mode Enabled", Toast.LENGTH_SHORT).show()
  112. } else {
  113. Toast.makeText(context, "Airplane Mode Disabled", Toast.LENGTH_SHORT).show()
  114. }
  115. }
  116. }
  117. }
  118.  
  119. Androidmanifest.xml:
  120. <?xml version="1.0" encoding="utf-8"?>
  121. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  122. xmlns:tools="http://schemas.android.com/tools">
  123. <application
  124. android:allowBackup="true"
  125. android:dataExtractionRules="@xml/data_extraction_rules"
  126. android:fullBackupContent="@xml/backup_rules"
  127. android:icon="@mipmap/ic_launcher"
  128. android:label="@string/app_name"
  129. android:roundIcon="@mipmap/ic_launcher_round"
  130. android:supportsRtl="true"
  131. android:theme="@style/Theme.MyApplication8"
  132. tools:targetApi="31">
  133. <!-- Register Main Activity -->
  134. <activity
  135. android:name=".MainActivity"
  136. android:exported="true">
  137. <intent-filter>
  138. <action android:name="android.intent.action.MAIN" />
  139. <category android:name="android.intent.category.LAUNCHER" />
  140. </intent-filter>
  141. </activity>
  142. <!-- Register Broadcast Receiver -->
  143. <receiver android:name=".broadcast"
  144. android:exported="false">
  145. <intent-filter>
  146. <action android:name="android.intent.action.AIRPLANE_MODE"/>
  147. </intent-filter>
  148. </receiver>
  149. </application>
  150. </manifest>
  151. Output:
  152. Create and manage virtual devices:
  153. To open the AVD Manager, do one of the following:
  154. • Select Tools > AVD Manager.
  155. • Click AVD Manager AVD Manager icon in the toolbar
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162. -------------------------------------------- PRACTICAL 2 --------------------------------------------------
  163. Programming Resources
  164. Android Resources: (Color, Theme, String, Drawable,Dimension,Image)  
  165.  
  166. Color:
  167. Color.xml
  168. <?xml version="1.0" encoding="utf-8"?>
  169. <resources>
  170. <color name="colorPrimary">#008577</color>
  171. <color name="colorPrimaryDark">#00574B</color>
  172. <color name="colorAccent">#D81B60</color>
  173. </resources>
  174. Activity-main.xml:
  175. <?xml version="1.0" encoding="utf-8"?>
  176. <androidx.constraintlayout.widget.ConstraintLayout
  177. xmlns:android="http://schemas.android.com/apk/res/android"
  178. xmlns:app="http://schemas.android.com/apk/res-auto"
  179. xmlns:tools="http://schemas.android.com/tools"
  180. android:id="@+id/main"
  181. android:layout_width="match_parent"
  182. android:layout_height="match_parent"
  183. tools:context=".MainActivity">
  184. <TextView
  185. android:layout_width="wrap_content"
  186. android:layout_height="wrap_content"
  187. android:text="colorPrimary"
  188. android:textColor="@color/colorPrimary"
  189. app:layout_constraintBottom_toBottomOf="parent"
  190. app:layout_constraintEnd_toEndOf="parent"
  191. app:layout_constraintHorizontal_bias="0.481"
  192. app:layout_constraintStart_toStartOf="parent"
  193. app:layout_constraintTop_toTopOf="parent"
  194. app:layout_constraintVertical_bias="0.424" />
  195. <TextView
  196. android:layout_width="wrap_content"
  197. android:layout_height="wrap_content"
  198. android:text="colorAccent"
  199. android:textColor="@color/colorAccent"
  200. app:layout_constraintBottom_toBottomOf="parent"
  201. app:layout_constraintEnd_toEndOf="parent"
  202. app:layout_constraintHorizontal_bias="0.491"
  203. app:layout_constraintStart_toStartOf="parent"
  204. app:layout_constraintTop_toTopOf="parent"
  205. app:layout_constraintVertical_bias="0.348" />
  206. <TextView
  207. android:layout_width="wrap_content"
  208. android:layout_height="wrap_content"
  209. android:text="colorPrimaryDark"
  210. android:textColor="@color/colorPrimaryDark"
  211. app:layout_constraintBottom_toBottomOf="parent"
  212. app:layout_constraintEnd_toEndOf="parent"
  213. app:layout_constraintHorizontal_bias="0.498"
  214. app:layout_constraintStart_toStartOf="parent"
  215. app:layout_constraintTop_toTopOf="parent"
  216. app:layout_constraintVertical_bias="0.272" />
  217. </androidx.constraintlayout.widget.ConstraintLayout>
  218.  
  219. Main_Activity.Kt
  220. package com.example.myapplication1
  221. import android.os.Bundle
  222. import androidx.activity.enableEdgeToEdge
  223. import androidx.appcompat.app.AppCompatActivity
  224. import androidx.core.view.ViewCompat
  225. import androidx.core.view.WindowInsetsCompat
  226. class MainActivity : AppCompatActivity() {
  227. override fun onCreate(savedInstanceState: Bundle?) {
  228. super.onCreate(savedInstanceState)
  229. enableEdgeToEdge()
  230. setContentView(R.layout.activity_main)
  231. ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
  232. val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
  233. v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
  234. insets
  235. }
  236. }
  237. }
  238.  
  239. APK in avd:
  240.  
  241. Theme:
  242. Style.xml
  243. <resources>
  244. <!-- Base application theme. -->
  245. <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
  246. <!-- Customize your theme here. -->
  247. <item name="colorPrimary">@color/colorPrimary</item>
  248. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  249. <item name="colorAccent">@color/colorAccent</item>
  250. </style>
  251. </resources>
  252. APK in avd:
  253. String:
  254. Activity_main.xml
  255. <?xml version="1.0" encoding="utf-8"?>
  256. <androidx.constraintlayout.widget.ConstraintLayout
  257. xmlns:android="http://schemas.android.com/apk/res/android"
  258. xmlns:app="http://schemas.android.com/apk/res-auto"
  259. xmlns:tools="http://schemas.android.com/tools"
  260. android:id="@+id/main"
  261. android:layout_width="match_parent"
  262. android:layout_height="match_parent"
  263. tools:context=".MainActivity">
  264. <TextView
  265. android:layout_width="wrap_content"
  266. android:layout_height="wrap_content"
  267. android:text="@string/error"
  268. app:layout_constraintBottom_toBottomOf="parent"
  269. app:layout_constraintEnd_toEndOf="parent"
  270. app:layout_constraintHorizontal_bias="0.491"
  271. app:layout_constraintStart_toStartOf="parent"
  272. app:layout_constraintTop_toTopOf="parent"
  273. app:layout_constraintVertical_bias="0.348" />
  274. </androidx.constraintlayout.widget.ConstraintLayout>
  275. String.xml:
  276. <resources>
  277. <string name="app_name">My Application1</string>
  278. <string name="error">it may contain error</string>
  279. </resources>
  280.  
  281. APK in avd:
  282.  
  283. Drawable:
  284. 1. Right click on drawable folder
  285. 2.  Copy the image if you want to create image drawable
  286. 3.  Paste that image file inside the drawable folder
  287. MainActivity.Kt
  288. package com.example.myapplication1
  289. import android.os.Bundle
  290. import androidx.activity.enableEdgeToEdge
  291. import androidx.appcompat.app.AppCompatActivity
  292. import androidx.core.view.ViewCompat
  293. import androidx.core.view.WindowInsetsCompat
  294. class MainActivity : AppCompatActivity() {
  295. override fun onCreate(savedInstanceState: Bundle?) {
  296. super.onCreate(savedInstanceState)
  297. enableEdgeToEdge()
  298. setContentView(R.layout.activity_main)
  299. ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.main)) { v, insets ->
  300. val systemBars = insets.getInsets(WindowInsetsCompat.Type.systemBars())
  301. v.setPadding(systemBars.left, systemBars.top, systemBars.right, systemBars.bottom)
  302. insets
  303. }
  304. }
  305. }
  306.  
  307. activity_main.xml:
  308. <?xml version="1.0" encoding="utf-8"?>
  309. <LinearLayout
  310. xmlns:android="http://schemas.android.com/apk/res/android"
  311. xmlns:tools="http://schemas.android.com/tools"
  312. xmlns:app="http://schemas.android.com/apk/res-auto"
  313. android:layout_width="match_parent"
  314. android:layout_height="match_parent"
  315. tools:context=".MainActivity"
  316. android:background="@drawable/pand">
  317. </LinearLayout>
  318. APK in avd:
  319.  
  320.  
  321.  
  322.  
  323.  
  324. ---------------------------------------------- PRACTICAL 4 ---------------------------------------------------
  325. Programs related to different Layouts
  326. Coordinate, Linear, Relative, Table, Absolute, Frame, List View, Grid  View.
  327.  
  328. 1. linear layout:
  329. <?xml version="1.0" encoding="utf-8"?>
  330. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  331. android:layout_width="fill_parent"
  332. android:layout_height="fill_parent"
  333. android:orientation="vertical" >
  334. <Button android:id="@+id/btnStartService"
  335. android:layout_width="270dp"
  336. android:layout_height="wrap_content"
  337. android:text="start_service"/>
  338. <Button android:id="@+id/btnPauseService"
  339. android:layout_width="270dp"
  340. android:layout_height="wrap_content"
  341. android:text="pause_service"/>
  342. <Button android:id="@+id/btnStopService"
  343. android:layout_width="270dp"
  344. android:layout_height="wrap_content"
  345. android:text="stop_service"/>
  346. </LinearLayout>
  347. Output:
  348.  
  349. 2. Relative:
  350. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  351. android:layout_width="fill_parent"
  352. android:layout_height="fill_parent"
  353. android:paddingLeft="16dp"
  354. android:paddingRight="16dp" >
  355. <EditText
  356. android:id="@+id/name"
  357. android:layout_width="fill_parent"
  358. android:layout_height="wrap_content"
  359. />
  360. <LinearLayout
  361. android:orientation="vertical"
  362. android:layout_width="fill_parent"
  363. android:layout_height="fill_parent"
  364. android:layout_alignParentStart="true"
  365. android:layout_below="@+id/name">
  366. <Button
  367. android:layout_width="wrap_content"
  368. android:layout_height="wrap_content"
  369. android:text="New Button"
  370. android:id="@+id/button" />
  371. <Button
  372. android:layout_width="wrap_content"
  373. android:layout_height="wrap_content"
  374. android:text="New Button"
  375. android:id="@+id/button2" />
  376. </LinearLayout>
  377. </RelativeLayout>
  378. Output::
  379.  
  380. 3. Table:
  381. Activity_main.xml:
  382. <?xml version="1.0" encoding="utf-8"?>
  383. <LinearLayout
  384. xmlns:android="http://schemas.android.com/apk/res/android"
  385. xmlns:tools="http://schemas.android.com/tools"
  386. xmlns:app="http://schemas.android.com/apk/res-auto"
  387. android:layout_width="match_parent"
  388. android:layout_height="match_parent"
  389. tools:context=".MainActivity">
  390. <TableLayout android:layout_width="wrap_content"
  391. android:layout_height="wrap_content"
  392. android:layout_marginLeft="50dp"
  393. android:layout_marginTop="150dp">
  394. <TableRow>
  395. <Button
  396. android:id="@+id/btn1"
  397. android:text="1"
  398. android:layout_gravity="center"
  399. />
  400. <Button
  401. android:id="@+id/btn2"
  402. android:text="2"
  403. android:layout_gravity="center"
  404. />
  405. <Button
  406. android:id="@+id/btn3"
  407. android:text="3"
  408. android:layout_gravity="center"
  409. />
  410. </TableRow>
  411. <TableRow>
  412. <Button
  413. android:id="@+id/btn4"
  414. android:text="4"
  415. android:layout_gravity="center"
  416. />
  417. <Button
  418. android:id="@+id/btn5"
  419. android:text="5"
  420. android:layout_gravity="center"
  421. /><Button
  422. android:id="@+id/btn6"
  423. android:text="6"
  424. android:layout_gravity="center"
  425. />
  426. </TableRow>
  427. <TableRow>
  428. <Button
  429. android:id="@+id/btn7"
  430. android:text="7"
  431. android:layout_gravity="center"
  432. />
  433. <Button
  434. android:id="@+id/btn8"
  435. android:text="8"
  436. android:layout_gravity="center"
  437. /><Button
  438. android:id="@+id/btn9"
  439. android:text="9"
  440. android:layout_gravity="center"
  441. />
  442. </TableRow>
  443. </TableLayout>
  444. </LinearLayout>
  445.  
  446. MainActivity.Kt:
  447. package com.example.myapplication1
  448. import android.os.Bundle
  449. import android.widget.Button
  450. import android.widget.Toast
  451. import androidx.activity.enableEdgeToEdge
  452. import androidx.appcompat.app.AppCompatActivity
  453. class MainActivity : AppCompatActivity() {
  454. override fun onCreate(savedInstanceState: Bundle?) {
  455. super.onCreate(savedInstanceState)
  456. enableEdgeToEdge()
  457. setContentView(R.layout.activity_main)
  458. val btn1: Button = findViewById(R.id.btn1)
  459. val btn2: Button = findViewById(R.id.btn2)
  460. val btn3: Button = findViewById(R.id.btn3)
  461. val btn4: Button = findViewById(R.id.btn4)
  462. val btn5: Button = findViewById(R.id.btn5)
  463. val btn6: Button = findViewById(R.id.btn6)
  464. val btn7: Button = findViewById(R.id.btn7)
  465. val btn8: Button = findViewById(R.id.btn8)
  466. val btn9: Button = findViewById(R.id.btn9)
  467. btn1.setOnClickListener {
  468. Toast.makeText(this, "Clicked 1", Toast.LENGTH_SHORT).show()
  469. }
  470. btn2.setOnClickListener {
  471. Toast.makeText(this, "Clicked 2", Toast.LENGTH_SHORT).show()
  472. }
  473. btn3.setOnClickListener {
  474. Toast.makeText(this, "Clicked 3", Toast.LENGTH_SHORT).show()
  475. }
  476. btn4.setOnClickListener {
  477. Toast.makeText(this, "Clicked 4", Toast.LENGTH_SHORT).show()
  478. }
  479. btn5.setOnClickListener {
  480. Toast.makeText(this, "Clicked 5", Toast.LENGTH_SHORT).show()
  481. }
  482. btn6.setOnClickListener {
  483. Toast.makeText(this, "Clicked 6", Toast.LENGTH_SHORT).show()
  484. }
  485. btn7.setOnClickListener {
  486. Toast.makeText(this, "Clicked 7", Toast.LENGTH_SHORT).show()
  487. }
  488. btn8.setOnClickListener {
  489. Toast.makeText(this, "Clicked 8", Toast.LENGTH_SHORT).show()
  490. }
  491. btn9.setOnClickListener {
  492. Toast.makeText(this, "Clicked 9", Toast.LENGTH_SHORT).show()
  493. }
  494. }
  495. }
  496. Output:
  497.  
  498. 5. List View:
  499. Activity_main.xml
  500. <?xml version="1.0" encoding="utf-8"?>
  501. <LinearLayout
  502. xmlns:android="http://schemas.android.com/apk/res/android"
  503. xmlns:tools="http://schemas.android.com/tools"
  504. xmlns:app="http://schemas.android.com/apk/res-auto"
  505. android:layout_width="match_parent"
  506. android:layout_height="match_parent"
  507. tools:context=".MainActivity">
  508. <Button android:layout_width="wrap_content"
  509. android:layout_height="wrap_content"
  510. android:id="@+id/btn"
  511. android:layout_gravity="center"
  512. android:layout_marginLeft="150dp"
  513. android:text="open ListView"/>
  514. </LinearLayout>
  515.  
  516. MainActivity.Kt
  517. package com.example.myapplication1
  518. import android.content.Intent
  519. import android.os.Bundle
  520. import android.widget.Button
  521. import android.widget.Toast
  522. import androidx.activity.enableEdgeToEdge
  523. import androidx.appcompat.app.AppCompatActivity
  524. class MainActivity : AppCompatActivity() {
  525. override fun onCreate(savedInstanceState: Bundle?) {
  526. super.onCreate(savedInstanceState)
  527. enableEdgeToEdge()
  528. setContentView(R.layout.activity_main)
  529. val btn: Button = findViewById(R.id.btn)
  530. btn.setOnClickListener {
  531. val intent = Intent(this, List_view::class.java)
  532. startActivity(intent)
  533. }
  534. }
  535. }
  536.  
  537. String.xml:
  538. <resources>
  539. <string name="app_name">My Application1</string>
  540. <array name="insert_list">
  541. <item>one</item>
  542. <item>two</item>
  543. <item>three</item>
  544. <item>four</item>
  545. <item>five</item>
  546. <item>six</item>
  547. <item>seven</item>
  548. <item>eight</item>
  549. <item>nine</item>
  550. <item>ten</item>
  551. </array>
  552. </resources>
  553. Activit_list_view.xml:
  554. <?xml version="1.0" encoding="utf-8"?>
  555. <ListView
  556. xmlns:android="http://schemas.android.com/apk/res/android"
  557. xmlns:tools="http://schemas.android.com/tools"
  558. xmlns:app="http://schemas.android.com/apk/res-auto"
  559. android:layout_width="match_parent"
  560. android:layout_height="match_parent"
  561. tools:context=".List_view"
  562. android:entries="@array/insert_list">
  563. </ListView>
  564.  
  565. List_view.kt:
  566. package com.example.myapplication1
  567. import android.os.Bundle
  568. import androidx.activity.enableEdgeToEdge
  569. import androidx.appcompat.app.AppCompatActivity
  570. import androidx.core.view.ViewCompat
  571. import androidx.core.view.WindowInsetsCompat
  572. class List_view : AppCompatActivity() {
  573. override fun onCreate(savedInstanceState: Bundle?) {
  574. super.onCreate(savedInstanceState)
  575. enableEdgeToEdge()
  576. setContentView(R.layout.activity_list_view)
  577. }
  578. }
  579. output:
  580.  
  581. 6. Grid layout:
  582. <?xml version="1.0" encoding="utf-8"?>
  583. <GridLayout
  584. xmlns:android="http://schemas.android.com/apk/res/android"
  585. xmlns:tools="http://schemas.android.com/tools"
  586. xmlns:app="http://schemas.android.com/apk/res-auto"
  587. android:layout_width="match_parent"
  588. android:layout_height="match_parent"
  589. tools:context=".MainActivity"
  590. android:rowCount="3"
  591. android:columnCount="3"
  592. android:padding="20dp">
  593. <Button
  594. android:layout_width="110dp"
  595. android:layout_height="100dp"
  596. android:text="1"/>
  597. <Button
  598. android:layout_width="110dp"
  599. android:layout_height="100dp"
  600. android:text="2"/>
  601. <Button
  602. android:layout_width="110dp"
  603. android:layout_height="100dp"
  604. https://E-next.in
  605. Khan S. Alam 30 https://E-next.in
  606. android:text="3"/>
  607. <Button
  608. android:layout_width="110dp"
  609. android:layout_height="100dp"
  610. android:text="4"/>
  611. <Button
  612. android:layout_width="110dp"
  613. android:layout_height="100dp"
  614. android:text="5"/>
  615. <Button
  616. android:layout_width="110dp"
  617. android:layout_height="100dp"
  618. android:text="6"/>
  619. <Button
  620. android:layout_width="110dp"
  621. android:layout_height="100dp"
  622. android:text="7"/>
  623. <Button
  624. android:layout_width="110dp"
  625. android:layout_height="100dp"
  626. android:text="8"/>
  627. <Button
  628. android:layout_width="110dp"
  629. android:layout_height="100dp"
  630. android:text="9"/>
  631. </GridLayout>
  632.  
  633.  
  634.  
  635.  
  636. ------------------------------------------------- PRACTICAL 5 -------------------------------------------------
  637. Programming UI elements
  638. Design App With UI:
  639.  
  640. mainActivity.kt:
  641. package com.example.myapplication1
  642. import android.content.Intent
  643. import android.os.Bundle
  644. import android.widget.Button
  645. import android.widget.Toast
  646. import androidx.activity.enableEdgeToEdge
  647. import androidx.appcompat.app.AppCompatActivity
  648. class MainActivity : AppCompatActivity() {
  649. override fun onCreate(savedInstanceState: Bundle?) {
  650. super.onCreate(savedInstanceState)
  651. enableEdgeToEdge()
  652. setContentView(R.layout.activity_main)
  653. }
  654. }
  655.  
  656. String.xml:
  657. <resources>
  658. <color name="colorPrimary">#008577</color>
  659. </resources>
  660.  
  661. activity_main.xml:
  662. ?xml version="1.0" encoding="utf-8"?>
  663. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  664. xmlns:app="http://schemas.android.com/apk/res-auto"
  665. xmlns:tools="http://schemas.android.com/tools"
  666. android:layout_width="match_parent"
  667. android:layout_height="match_parent"
  668. android:gravity="center_horizontal"
  669. android:orientation="vertical"
  670. tools:context=".MainActivity"
  671. android:background="@drawable/backgrd">
  672. <ScrollView
  673. android:id="@+id/login_form"
  674. android:layout_width="match_parent"
  675. android:layout_height="match_parent">
  676. <LinearLayout
  677. android:layout_width="match_parent"
  678. android:layout_height="wrap_content"
  679. android:orientation="vertical"
  680. android:gravity="center">
  681. <ImageView
  682. android:id="@+id/imageView2"
  683. android:layout_width="wrap_content"
  684. android:layout_height="208dp"
  685. android:layout_marginTop="100dp"
  686. app:srcCompat="@drawable/captureing" />
  687. <TextView
  688. android:layout_width="wrap_content"
  689. android:layout_height="wrap_content"
  690. android:layout_marginTop="20dp"
  691. android:alpha="0.7"
  692. android:text="Welcome"
  693. android:textColor="#000000"
  694. android:textSize="33dp"
  695. android:textStyle="bold" />
  696. <Button
  697. android:id="@+id/login"
  698. android:layout_width="258dp"
  699. android:layout_height="wrap_content"
  700. android:layout_marginTop="16dp"
  701. android:alpha="0.8"
  702. android:backgroundTint="@color/colorPrimary"
  703. android:text="Login"
  704. android:textStyle="bold" />
  705. <Button
  706. android:id="@+id/newaccount"
  707. android:layout_width="261dp"
  708. android:layout_height="wrap_content"
  709. android:layout_marginTop="16dp"
  710. android:alpha="0.8"
  711. android:backgroundTint="@color/colorPrimary"
  712. android:text="REGISTER"
  713. android:textStyle="bold" />
  714. </LinearLayout>
  715. </ScrollView>
  716. </LinearLayout>
  717.  
  718.  
  719.  
  720.  
  721.  
  722.  
  723.  
  724. --------------------------------------------------------- PRACTICAL 6 ----------------------------------------------------------
  725. Programming menus, dialog, dialog fragments
  726. Alert:
  727.  
  728. Activity_main.xml
  729. <?xml version="1.0" encoding="utf-8"?>
  730. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  731. xmlns:app="http://schemas.android.com/apk/res-auto"
  732. xmlns:tools="http://schemas.android.com/tools"
  733. android:layout_width="match_parent"
  734. android:layout_height="match_parent"
  735. android:gravity="center_horizontal"
  736. android:orientation="vertical"
  737. tools:context=".MainActivity"
  738. >
  739. <TextView
  740. android:id="@+id/textView"
  741. android:layout_width="199dp"
  742. android:layout_height="wrap_content"
  743. android:layout_marginTop="300dp"
  744. android:text="Hello World" />
  745. </LinearLayout>
  746. MainActivity.kt:
  747. package com.example.myapplication1
  748. import android.os.Bundle
  749. import android.widget.Toast
  750. import androidx.activity.enableEdgeToEdge
  751. import androidx.appcompat.app.AlertDialog
  752. import androidx.appcompat.app.AppCompatActivity
  753. import java.lang.Override as Override1
  754. class MainActivity : AppCompatActivity() {
  755. override fun onCreate(savedInstanceState: Bundle?) {
  756. super.onCreate(savedInstanceState)
  757. enableEdgeToEdge()
  758. setContentView(R.layout.activity_main)
  759. }
  760. override fun onBackPressed() {
  761. showExitDialog()
  762. }
  763. private fun showExitDialog() {
  764. val builder = AlertDialog.Builder(this)
  765. builder.setTitle("Alert")
  766. builder.setMessage("Are you sure you want to exit?")
  767. builder.setPositiveButton("Yes") { _, _ ->
  768. finish() // Closes the activity (exit app)
  769. }
  770. builder.setNegativeButton("No") { dialog, _ ->
  771. dialog.dismiss() // Dismiss the dialog
  772. }
  773. val alertDialog = builder.create()
  774. alertDialog.show()
  775. }
  776. }
  777. Output:
  778.  
  779. 2.menu
  780. 1.To create menu.xml right click on res folder
  781. 2.click on new resource file .
  782. 3.know right click on menu folder select menu resourse file.
  783. 4.double click on menu.xml drag and drop menu items
  784. Menu.xml
  785. <?xml version="1.0" encoding="utf-8"?>
  786. <menu xmlns:app="http://schemas.android.com/apk/res-auto"
  787. xmlns:android="http://schemas.android.com/apk/res/android">
  788. <item android:title="Item1"
  789. android:id="@+id/item1"/>
  790. <item android:title="Item2"
  791. android:id="@+id/item2"/>
  792. <item android:title="Item3"
  793. android:id="@+id/item3"/>
  794. <item android:title="Item4"
  795. android:id="@+id/item4"/>
  796. </menu>
  797. MainActivity.xml:
  798.  
  799. package com.example.myapplication1
  800. import android.os.Bundle
  801. import android.view.Menu
  802. import android.view.MenuItem
  803. import android.widget.Toast
  804. import androidx.activity.enableEdgeToEdge
  805. import androidx.appcompat.app.AppCompatActivity
  806. class MainActivity : AppCompatActivity() {
  807. override fun onCreate(savedInstanceState: Bundle?) {
  808. super.onCreate(savedInstanceState)
  809. enableEdgeToEdge()
  810. setContentView(R.layout.activity_main)
  811. }
  812. override fun onCreateOptionsMenu(menu: Menu): Boolean {
  813. menuInflater.inflate(R.menu.menu, menu)
  814. return true
  815. }
  816. override fun onOptionsItemSelected(item: MenuItem): Boolean {
  817. when (item.itemId) {
  818. R.id.item1 -> {
  819. Toast.makeText(this, "Item 1 is selected", Toast.LENGTH_SHORT).show()
  820. return true
  821. }
  822. R.id.item2 -> {
  823. Toast.makeText(this, "Item 2 is selected",  Toast.LENGTH_SHORT).show()
  824. return true
  825. }
  826. R.id.item3 -> {
  827. Toast.makeText(this, "Item 3 is selected", Toast.LENGTH_SHORT).show()
  828. return true
  829. }
  830. R.id.item4 -> {
  831. Toast.makeText(this, "Item 4 is selected", Toast.LENGTH_SHORT).show()
  832. return true
  833. }
  834. else -> return super.onOptionsItemSelected(item)  }}}
  835.  
  836.  
  837.  
  838.  
  839.  
  840.  
  841.  
  842. ---------------------------------------------- PRACTICAL 7 -------------------------------------------------------
  843. Programs on Intents, Events Listeners and Adapters
  844. activity_main.xml:
  845. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  846. android:layout_width="match_parent"
  847. android:layout_height="match_parent"
  848. android:orientation="vertical"
  849. android:gravity="center"
  850. android:padding="20dp">
  851. <EditText
  852. android:id="@+id/etName"
  853. android:layout_width="match_parent"
  854. android:layout_height="wrap_content"
  855. android:hint="Enter your name"
  856. android:padding="10dp"/>
  857. <Button
  858. android:id="@+id/btnSubmit"
  859. android:layout_width="wrap_content"
  860. android:layout_height="wrap_content"
  861. android:text="Submit"
  862. android:layout_marginTop="20dp"/>
  863. </LinearLayout>
  864. MainActivity.kt
  865. package com.example.myapp
  866. import android.content.Intent
  867. import android.os.Bundle
  868. import android.widget.Button
  869. import android.widget.EditText
  870. import androidx.appcompat.app.AppCompatActivity
  871. class MainActivity : AppCompatActivity() {
  872. override fun onCreate(savedInstanceState: Bundle?) {
  873. super.onCreate(savedInstanceState)
  874. setContentView(R.layout.activity_main)
  875. val etName: EditText = findViewById(R.id.etName)
  876. val btnSubmit: Button = findViewById(R.id.btnSubmit)
  877. btnSubmit.setOnClickListener {
  878. val name = etName.text.toString()
  879. if (name.isNotEmpty()) {
  880. val intent = Intent(this, SecondActivity::class.java)
  881. intent.putExtra("USER_NAME", name) // Passing the name to second activity
  882. startActivity(intent)
  883. } else {
  884. etName.error = "Please enter your name"
  885. }
  886. }
  887. }
  888. }
  889. activity_second.xml
  890. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  891. android:layout_width="match_parent"
  892. android:layout_height="match_parent"
  893. android:orientation="vertical"
  894. android:gravity="center"
  895. android:padding="20dp">
  896. <TextView
  897. android:id="@+id/tvWelcome"
  898. android:layout_width="wrap_content"
  899. android:layout_height="wrap_content"
  900. android:textSize="20sp"
  901. android:textStyle="bold"/>
  902. </LinearLayout>
  903. SecondActivity.kt
  904. package com.example.myapp
  905. import android.os.Bundle
  906. import android.widget.TextView
  907. import androidx.appcompat.app.AppCompatActivity
  908. class SecondActivity : AppCompatActivity() {
  909. override fun onCreate(savedInstanceState: Bundle?) {
  910. super.onCreate(savedInstanceState)
  911. setContentView(R.layout.activity_second)
  912. val tvWelcome: TextView = findViewById(R.id.tvWelcome)
  913. // Receiving data from MainActivity
  914. val name = intent.getStringExtra("USER_NAME")
  915. tvWelcome.text = "Hello, $name!"
  916. }
  917. }
  918.  
  919.  
  920.  
  921.  
  922.  
  923. ---------------------------------------- Practical 8 -------------------------------------------------------
  924. Programs on Services, notification and broadcast
  925. receivers
  926. 1. Programs on Services:
  927. Services are commands which are used by kotlin in functions to execute the task. They are
  928. :IntentService, onStartCommand(),onHandleIntent() etc.
  929. 2. notification and broadcast receivers:
  930. Step 1. Create an android app, For creating an Android app with kotlin read this tutorial.
  931. Step 2. Creating Broadcast Receiver Create and extend Subclass and
  932. BroadcastReceiverimplement.onReceive(Context, Intent) where onReceive method each
  933. message is received as an Intent object parameter.
  934. 1.Notification:
  935. AndroidManifest.xml:
  936. <?xml version="1.0" encoding="utf-8"?>
  937. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  938. xmlns:tools="http://schemas.android.com/tools">
  939. <!-- Permission for Notifications (Required for Android 13+) -->
  940. <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
  941. <application
  942. android:allowBackup="true"
  943. android:dataExtractionRules="@xml/data_extraction_rules"
  944. android:fullBackupContent="@xml/backup_rules"
  945. android:icon="@mipmap/ic_launcher"
  946. android:label="@string/app_name"
  947. android:roundIcon="@mipmap/ic_launcher_round"
  948. android:supportsRtl="true"
  949. android:theme="@style/Theme.MyApplication9"
  950. tools:targetApi="31">
  951. <activity
  952. android:name=".MainActivity"
  953. android:exported="true">
  954. <intent-filter>
  955. <action android:name="android.intent.action.MAIN" />
  956. <category android:name="android.intent.category.LAUNCHER" />
  957. </intent-filter>
  958. </activity>
  959. </application>
  960. </manifest>
  961. MainActivit.kt
  962. package com.example.myapplication9
  963. import android.app.NotificationChannel
  964. import android.app.NotificationManager
  965. import android.content.Context
  966. import android.content.pm.PackageManager
  967. import android.os.Build
  968. import android.os.Bundle
  969. import android.view.View
  970. import androidx.appcompat.app.AppCompatActivity
  971. import androidx.core.app.ActivityCompat
  972. import androidx.core.app.NotificationCompat
  973. import androidx.core.app.NotificationManagerCompat
  974. import com.example.myapplication9.R
  975. class MainActivity : AppCompatActivity() {
  976. private val CHANNEL_ID = "123"
  977. private val NOTIFICATION_ID_1 = 111
  978. private val REQUEST_CODE_NOTIFICATIONS = 101
  979. override fun onCreate(savedInstanceState: Bundle?) {
  980. super.onCreate(savedInstanceState)
  981. setContentView(R.layout.activity_main)
  982. createNotificationChannel()
  983. // Check and request notification permission for Android 13+
  984. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
  985. if (checkSelfPermission(android.Manifest.permission.POST_NOTIFICATIONS) !=
  986. PackageManager.PERMISSION_GRANTED) {
  987. requestPermissions(arrayOf(android.Manifest.permission.POST_NOTIFICATIONS),
  988. REQUEST_CODE_NOTIFICATIONS)
  989. }
  990. }
  991. }
  992. private fun createNotificationChannel() {
  993. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
  994. val channel = NotificationChannel(
  995. CHANNEL_ID, "Notification Channel",
  996. NotificationManager.IMPORTANCE_DEFAULT
  997. )
  998. val notificationManager = getSystemService(NotificationManager::class.java)
  999. notificationManager.createNotificationChannel(channel)
  1000. }
  1001. }
  1002. fun show1(view: View) {
  1003. // Check if permission is granted before sending the notification
  1004. if (ActivityCompat.checkSelfPermission(this,
  1005. android.Manifest.permission.POST_NOTIFICATIONS)
  1006. != PackageManager.PERMISSION_GRANTED) {
  1007. return  // Exit if permission is not granted
  1008. }
  1009. val notification = NotificationCompat.Builder(this, CHANNEL_ID)
  1010. .setSmallIcon(R.drawable.ic_launcher_foreground) // Ensure this icon exists
  1011. .setContentTitle("First Notification")
  1012. .setContentText("This notification is not clickable.")
  1013. .setPriority(NotificationCompat.PRIORITY_DEFAULT)
  1014. .build()
  1015. NotificationManagerCompat.from(this).notify(NOTIFICATION_ID_1, notification)
  1016. }
  1017. }
  1018. activity_main.xml:
  1019. <RelativeLayout
  1020. xmlns:android="http://schemas.android.com/apk/res/android"
  1021. xmlns:tools="http://schemas.android.com/tools"
  1022. android:layout_width="match_parent"
  1023. android:layout_height="match_parent"
  1024. tools:context=".MainActivity">
  1025. <Button
  1026. android:id="@+id/btn1"
  1027. android:layout_width="wrap_content"
  1028. android:layout_height="wrap_content"
  1029. android:text="Notification 1"
  1030. android:layout_alignParentTop="true"
  1031. android:layout_marginTop="133dp"
  1032. android:onClick="show1"
  1033. android:layout_centerInParent="true"/>
  1034. <Button
  1035. android:id="@+id/btn2"
  1036. android:layout_width="wrap_content"
  1037. android:layout_height="wrap_content"
  1038. android:text="Notification 2"
  1039. android:layout_marginTop="156dp"
  1040. android:layout_below="@+id/btn1"
  1041. android:onClick="show2"
  1042. android:layout_centerInParent="true"/>
  1043. </RelativeLayout>
  1044.                                                                                                      
  1045.  
  1046. Broadcast Receivers in Android  
  1047. A Broadcast Receiver listens for system-wide and custom broadcasts. 3.1 Creating a Broadcast
  1048. Receiver for Airplane Mode
  1049. 1. Create MyBroadcastReceiver.kt
  1050. Kotlin
  1051. class MyBroadcastReceiver : BroadcastReceiver()
  1052. { override fun onReceive(context: Context, intent: Intent) {
  1053. if (intent.action == Intent.ACTION_AIRPLANE_MODE_CHANGED)  
  1054. {
  1055. val isAirplaneModeOn = intent.getBooleanExtra("state", false) Toast.makeText(context,
  1056. "Airplane Mode: $isAirplaneModeOn", Toast.LENGTH_SHORT).show()  
  1057. }  
  1058. } }
  1059. 2. Register Receiver in AndroidManifest.xml  
  1060. 3.2 Sending and Receiving Custom Broadcast  
  1061. 1. Create MyCustomReceiver.kt  
  1062. kotlin  
  1063. class MyCustomReceiver : BroadcastReceiver()  
  1064. {  
  1065. override fun onReceive(context: Context, intent: Intent)
  1066. {  
  1067. val message = intent.getStringExtra("message") Toast.makeText(context, "Received:
  1068. $message" , Toast.LENGTH_SHORT).show()  
  1069. }  
  1070. }  
  1071. 2. Register Receiver in AndroidManifest.xml xml 3.
  1072. Send Broadcast (MainActivity.kt) kotlin val intent
  1073. =Intent("com.example.CUSTOM_BROADCAST") intent.putExtra("message", "Hello
  1074. from MainActivity") sendBroadcast(intent)
  1075.  
  1076.  
  1077.  
  1078.  
  1079.  
  1080.  
  1081.  
  1082. ---------------------------------------------------- Practical 9 ----------------------------------------------------------
  1083. Database Programming with SQLite
  1084. MainActivit,kt
  1085. package com.example.myapplication9
  1086. import android.database.Cursor
  1087. import androidx.appcompat.app.AppCompatActivity
  1088. import android.os.Bundle
  1089. import android.widget.Button
  1090. import android.widget.EditText
  1091. import android.widget.TextView
  1092. import android.widget.Toast
  1093. class MainActivity : AppCompatActivity() {
  1094. lateinit var dbHelper: DatabaseHelper
  1095. lateinit var etName: EditText
  1096. lateinit var tvResult: TextView
  1097. override fun onCreate(savedInstanceState: Bundle?) {
  1098. super.onCreate(savedInstanceState)
  1099. setContentView(R.layout.activity_main)
  1100. dbHelper = DatabaseHelper(this)
  1101. etName = findViewById(R.id.etName)
  1102. val btnSave = findViewById<Button>(R.id.btnSave)
  1103. val btnShow = findViewById<Button>(R.id.btnShow)
  1104. tvResult = findViewById(R.id.tvResult)
  1105. // Save Name Button Click
  1106. btnSave.setOnClickListener {
  1107. val name = etName.text.toString()
  1108. if (name.isNotEmpty()) {
  1109. val success = dbHelper.insertUser(name)
  1110. if (success) {
  1111. Toast.makeText(this, "Name Saved!", Toast.LENGTH_SHORT).show()
  1112. etName.text.clear()
  1113. } else {
  1114. Toast.makeText(this, "Error Saving Name!", Toast.LENGTH_SHORT).show()
  1115. }
  1116. } else {
  1117. Toast.makeText(this, "Enter a Name!", Toast.LENGTH_SHORT).show()
  1118. }
  1119. }
  1120. // Show Names Button Click
  1121. btnShow.setOnClickListener {
  1122. val cursor: Cursor = dbHelper.getUsers()
  1123. val stringBuilder = StringBuilder()
  1124. if (cursor.count == 0) {
  1125. tvResult.text = "No Names Found!"
  1126. return@setOnClickListener
  1127. }
  1128. while (cursor.moveToNext()) {
  1129. stringBuilder.append("ID: ${cursor.getInt(0)}\n")
  1130. stringBuilder.append("Name: ${cursor.getString(1)}\n\n")
  1131. }
  1132. cursor.close()
  1133. tvResult.text = stringBuilder.toString()
  1134. }
  1135. }
  1136. }
  1137. Activity_mai.xml
  1138. <?xml version="1.0" encoding="utf-8"?>
  1139. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1140. android:layout_width="match_parent"
  1141. android:layout_height="match_parent"
  1142. android:orientation="vertical"
  1143. android:padding="20dp">
  1144. <EditText
  1145. android:id="@+id/etName"
  1146. android:layout_width="match_parent"
  1147. android:layout_height="wrap_content"
  1148. android:hint="Enter Name" />
  1149. <Button
  1150. android:id="@+id/btnSave"
  1151. android:layout_width="match_parent"
  1152. android:layout_height="wrap_content"
  1153. android:text="Save Name" />
  1154. <Button
  1155. android:id="@+id/btnShow"
  1156. android:layout_width="match_parent"
  1157. android:layout_height="wrap_content"
  1158. android:text="Show Names" />
  1159. <TextView
  1160. android:id="@+id/tvResult"
  1161. android:layout_width="match_parent"
  1162. android:layout_height="wrap_content"
  1163. android:text="Saved Names"
  1164. android:textSize="16sp"
  1165. android:paddingTop="10dp" />
  1166. </LinearLayout>
  1167. DatabaseHelper.kt
  1168. package com.example.myapplication9
  1169. import android.content.ContentValues
  1170. import android.content.Context
  1171. import android.database.Cursor
  1172. import android.database.sqlite.SQLiteDatabase
  1173. import android.database.sqlite.SQLiteOpenHelper
  1174. class DatabaseHelper(context: Context) : SQLiteOpenHelper(context, "UserDB", null, 1) {
  1175. override fun onCreate(db: SQLiteDatabase) {
  1176. db.execSQL("CREATE TABLE Users (id INTEGER PRIMARY KEY
  1177. AUTOINCREMENT, name TEXT)")
  1178. }
  1179. override fun onUpgrade(db: SQLiteDatabase, oldVersion: Int, newVersion: Int) {
  1180. db.execSQL("DROP TABLE IF EXISTS Users")
  1181. onCreate(db)
  1182. }
  1183. // Add User
  1184. fun insertUser(name: String): Boolean {
  1185. val db = writableDatabase
  1186. val values = ContentValues()
  1187. values.put("name", name)
  1188. val result = db.insert("Users", null, values)
  1189. db.close()
  1190. return result != -1L
  1191. }
  1192. // Get Users
  1193. fun getUsers(): Cursor {
  1194. val db = readableDatabase
  1195. return db.rawQuery("SELECT * FROM Users", null)
  1196. }
  1197. }
Add Comment
Please, Sign In to add comment