Changes

Jump to: navigation, search

A Kotlin Android Studio App Links Tutorial

32 bytes removed, 16:32, 4 December 2017
no edit summary
This chapter will add app linking support to an existing Android app, allowing an activity to be launched via an app link URL. In addition to launching the activity, the content displayed will be specified within the path of the URL.
== About About the Example App ==
The project used in this chapter is named AppLinking and is a basic app designed to allow users to find out information about landmarks in London. The app uses a SQLite database accessed through a standard Android content provider class. The app is provided with an existing database containing a set of records for some popular tourist attractions in London. In addition to the existing database entries, the app also lets the user add and delete landmark descriptions.
    setContentView(R.layout.activity_landmark)
 
    handleIntent(intent)
}
</pre>

Navigation menu