mirror of
https://github.com/SimpleMobileTools/Simple-Thank-You.git
synced 2025-02-21 14:00:52 +01:00
add License activity content
This commit is contained in:
parent
3f0ee9da5a
commit
7dd27f51b9
@ -1,9 +1,22 @@
|
||||
package com.simplemobiletools.thankyou.activities
|
||||
|
||||
import android.content.Intent
|
||||
import android.net.Uri
|
||||
import android.os.Bundle
|
||||
import com.simplemobiletools.thankyou.R
|
||||
import kotlinx.android.synthetic.main.activity_license.*
|
||||
|
||||
class LicenseActivity : SimpleActivity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
super.onCreate(savedInstanceState)
|
||||
setContentView(R.layout.activity_license)
|
||||
|
||||
license_kotlin_title.setOnClickListener { openUrl(R.string.kotlin_url) }
|
||||
}
|
||||
|
||||
private fun openUrl(id: Int) {
|
||||
val url = resources.getString(id)
|
||||
val browserIntent = Intent(Intent.ACTION_VIEW, Uri.parse(url))
|
||||
startActivity(browserIntent)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user