Mobile Development Articles

Page 75 of 156

How to enable or disable the GPS programmatically on Kotlin?

Azhar
Azhar
Updated on 23-May-2020 2K+ Views

This example demonstrates how to enable or disable the GPS programmatically on Kotlin.Step 1 − Create a new project in Android Studio, go to File ? New Project and fill all required details to create a new project.Step 2 &minsu; Add the following code to res/layout/activity_main.xml.Example             Step 3 − Add the following code to src/MainActivity.ktimport android.content.Context import android.content.Intent import android.location.LocationManager import android.os.Bundle import android.provider.Settings import android.view.View import android.widget.TextView import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    private lateinit var context: Context    var intent1: Intent? = null    lateinit var textView: TextView   ...

Read More

How to create a listView with a checkBox in Kotlin?

Azhar
Azhar
Updated on 23-May-2020 1K+ Views

This example demonstrates how to Create a listView with a checkBox in Kotlin.Step 1  − Create a new project in Android Studio, go to File ? New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.Example Step 3 − Add the following code to src/MainActivity.ktExampleimport android.view.View import android.widget.AdapterView.OnItemClickListener import android.widget.ListView import androidx.appcompat.app.AppCompatActivity import java.util.* class MainActivity : AppCompatActivity() {    private var dataModel: ArrayList? = null    private lateinit var listView: ListView    private lateinit var adapter: CustomAdapter    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState) ...

Read More

How to create a WebView in an Android App using Kotlin?

Azhar
Azhar
Updated on 23-May-2020 2K+ Views

This example demonstrates how to create a WebView in an Android App using Kotlin.Step 1 − Create a new project in Android Studio, go to File ? New Project and fill all required details to create a new project.Example         Step 3 − Add the following code to src/MainActivity.ktExampleimport android.os.Bundle import android.webkit.WebView import android.webkit.WebViewClient import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    private val webView: WebView? = null    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       title = "KotlinApp"       val webView = findViewById(R.id.webView)       ...

Read More

Add and Remove Views in Android Dynamically in Kotlin?

Azhar
Azhar
Updated on 23-May-2020 4K+ Views

This example demonstrates how to Add and Remove Views in Android Dynamically in Kotlin.Step 1 − Create a new project in Android Studio, go to File ? New Project and fill all required details to create a new project.Step 2  − Add the following code to res/layout/activity_main.xml.Example                           Step 3 − Add the following code to src/MainActivity.ktExampleimport android.content.Context import android.os.Bundle import android.view.LayoutInflater import android.view.View import android.widget.LinearLayout import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    private var parentLinearLayout: LinearLayout? = null   ...

Read More

What is piconet?

Moumita
Moumita
Updated on 27-Apr-2020 7K+ Views

A piconet is a small Bluetooth network that connects mobile devices wirelessly over a short range of 10m radius, using ultra-high frequency (UHF) radio waves, to form a personal area network (PAN).A piconet can be formed by at most 8 stations, one of which is the master node and the rest slave nodes. Thus, it can accommodate a maximum of 7 slaves. The master node is the primary station that manages the small network. The slave stations are secondary stations that are synchronized with the primary station.Communication can take place between a master node and a slave node in either ...

Read More

What is scatternet?

Moumita
Moumita
Updated on 27-Apr-2020 6K+ Views

A scatternet is a type of Bluetooth network that is formed by the interconnection between two or more individual Bluetooth networks, called piconets. The devices in the scattered should be Bluetooth enabled so that they can communicate wirelessly over a short range of within 10m radius using ultra-high frequency (UHF) radio waves.In a scatternet, there must be at least two piconets. The nodes in a scatternet may be of three types −Master Node − It is the primary station in each piconet that controls the communication within that piconet.Slave Node − A slave is a secondary station in a piconet ...

Read More

How to use ArrayAdapter in android to create a simple listview in Kotlin?

Azhar
Azhar
Updated on 21-Apr-2020 5K+ Views

This example demonstrates how to use ArrayAdapter in android to create a simple listview in Kotlin.Step 1 − Create a new project in Android Studio, go to File ⇒New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.     Step 3 − Add the following code to MainActivity.ktimport android.os.Bundle import android.widget.ArrayAdapter import android.widget.ListView import androidx.appcompat.app.AppCompatActivity class MainActivity : AppCompatActivity() {    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       title = "KotlinApp"       val arrayAdapter: ArrayAdapter     ...

Read More

How to use SearchView in the Toolbar in Kotlin?

Azhar
Azhar
Updated on 21-Apr-2020 3K+ Views

This example demonstrates how to use SearchView in the Toolbar in Kotlin.Step 1 − Create a new project in Android Studio, go to File ⇉ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.             Step 3 − Open res/strings.xml and add the following code−    Q38           January       February       March       April       May       June       July       August     ...

Read More

How to get Spinner value in Kotlin?

Azhar
Azhar
Updated on 21-Apr-2020 4K+ Views

This example demonstrates how to get Spinner value in Kotlin.Step 1 − Create a new project in Android Studio, go to File ⇉ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.             Step 3 − Open res/strings.xml and add the following code −    Q39           crane       Cuckoo       Pigeon       Eagle       Owl       Vulture       WoodPecker     Step 4 − Add the ...

Read More

How to programmatically turn off and turn on WiFi in Kotlin?

Azhar
Azhar
Updated on 21-Apr-2020 1K+ Views

This example demonstrates programmatically turning off and turning on WiFi in Kotlin.Step 1 − Create a new project in Android Studio, go to File ⇉ New Project and fill all required details to create a new project.Step 2 − Add the following code to res/layout/activity_main.xml.             Step 3 − Add the following code to MainActivity.ktimport android.net.wifi.WifiManager import androidx.appcompat.app.AppCompatActivity import android.os.Bundle import android.view.View import android.widget.Toast class MainActivity : AppCompatActivity() {    lateinit var wifiManager: WifiManager    override fun onCreate(savedInstanceState: Bundle?) {       super.onCreate(savedInstanceState)       setContentView(R.layout.activity_main)       title = "KotlinApp" ...

Read More
Showing 741–750 of 1,551 articles
« Prev 1 73 74 75 76 77 156 Next »
Advertisements