Skip to main content

How to create custom dialog box in android kotlin

 


1=> In Activity File (MainActivity.kt) :


override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_Main)

//method 2 for show dialog box
val dialog=Dialog(this)
dialog.setContentView(R.layout.custom_dialog_box);
val btnOk= dialog.findViewById<Button>(R.id.btnOk)
if (btnOk != null) {
btnOk.setOnClickListener( {
Toast.makeText(this,"Success",Toast.LENGTH_LONG).show()
dialog.dismiss()
})}
dialog.show();


//method 2 for show dialog box
//
// val builder = AlertDialog.Builder(this)
// val inflater = LayoutInflater.from(this)
// val dialogView = inflater.inflate(R.layout.custom_dialog_box, null)
//
// builder.setView(dialogView)
//
// val dialog = builder.create()
// dialog.show()



}


2=> In Layout XML File (custom_dialog_box.xml):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:background="@drawable/box_corner_radius"
android:layout_height="wrap_content">

<ImageView
android:layout_width="match_parent"
android:layout_height="70dp"
android:src="@drawable/add_reaction"/>

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/box_corner_radius"
>

<TextView
android:id="@+id/tsSuccess"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Success"
android:layout_margin="20dp"
android:textStyle="bold"
android:textSize="30sp"
android:gravity="center"
android:textColor="#4CAF50"/>
<TextView
android:id="@+id/tsMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Booked "

android:layout_margin="20dp"
android:textStyle="bold"
android:textSize="16sp"
android:gravity="center"
android:textColor="#060706"/>

<Button
android:id="@+id/btnOk"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_margin="20dp"
android:padding="20dp"
android:text="Ok"
/>

</LinearLayout>
</LinearLayout>

3=> In Drawable File (box_corner_radius.xml) :

?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners
android:bottomLeftRadius="30dp"
android:bottomRightRadius="30dp"
android:topLeftRadius="30dp"
android:topRightRadius="30dp" />
<solid android:color="#1271BB" />

<stroke
android:width="5dp"
android:color="#1271BB" />

<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" /></shape>


Thanks for read this blog...

Comments

Popular posts from this blog

How to write a code of Encode and Decode json data in Dart language

 Encode and decode JSON data in dart language import 'dart:convert'; void main() {   // Original data as a Dart map   Map<String, dynamic> originalData = {     'field1': 'value1',     'field2': 42,     'field3': true,   };   // Encode the Dart map to JSON string   String jsonString = jsonEncode(originalData);   print('Original JSON String:');   print(jsonString);   // Encode the JSON string to base64   String base64EncodedString = base64.encode(utf8.encode(jsonString));   print('\nBase64 Encoded String:');   print(base64EncodedString);   // Decode the base64 string to JSON string   String decodedJsonString = utf8.decode(base64.decode(base64EncodedString));   print('\nDecoded JSON String:');   print(decodedJsonString);   // Decode the JSON string to a Dart map   Map<String, dynamic> decodedData = jsonDecode(decodedJsonString);   print('\nDecoded Dart Ma...

About of Free Learning Tech Point

  Welcome to Free Learning Tech Point , where knowledge meets accessibility. Our platform is dedicated to providing high-quality educational resources and e-learning opportunities to learners around the world, completely free of charge. Our Mission: At Free Learning Tech Point, we believe that education is a fundamental right, and everyone should have access to valuable learning materials. Our mission is to break down barriers to education by offering a diverse range of courses, tutorials, and resources across various subjects and disciplines. What Sets Us Apart: - Free Access: Our commitment is to make learning accessible to all. No subscription fees, no hidden costs – just free, open access to knowledge.    - Quality Content: We curate and create content that is both engaging and informative. Whether you're a student, professional, or lifelong learner, our resources are designed to cater to various learning styles and levels. - Diverse Subjects: From tech and science...

Privacy Policy Of Free Learning Tech Point

  Thank you for visiting Free Learning Tech Point . You can use our website, services, and products with the awareness that this Privacy Policy describes how we gather, use, disclose, and protect your personal information. 1- Information We Collect: We may collect personal information that you provide directly to us, such as your name, email address, and any other information you choose to provide when using our Services. We may also collect non-personal information, such as aggregated data and usage patterns. 2- How We Use Your Information: We may use the information we collect for various purposes, including but not limited to: Providing and improving our Services. Responding to your inquiries and requests. Analyzing usage patterns and trends. Sending you updates, newsletters, and other communications. Personalizing your experience on our platform. 3- Cookies and Similar Technologies: We may use cookies and similar technologies to collect information about your interactions with...