ref: 912f70db2ca99322470dde31169a941352694501
app/src/main/java/xyz/apiote/bimba/czwek/AboutActivity.kt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
// SPDX-FileCopyrightText: Adam Evyčędo // // SPDX-License-Identifier: GPL-3.0-or-later package xyz.apiote.bimba.czwek import android.content.Intent import android.net.Uri import android.os.Bundle import androidx.appcompat.app.AppCompatActivity import xyz.apiote.bimba.czwek.databinding.ActivityAboutBinding class AboutActivity : AppCompatActivity() { private var _binding: ActivityAboutBinding? = null private val binding get() = _binding!! override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) _binding = ActivityAboutBinding.inflate(layoutInflater) setContentView(binding.root) binding.mastodon.setOnClickListener { startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://floss.social/@bimba"))) } binding.website.setOnClickListener { startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://bimba.apiote.xyz"))) } binding.code.setOnClickListener { startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://git.apiote.xyz/Bimba.git"))) } binding.translate.setOnClickListener { startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("https://hosted.weblate.org/projects/bimba/"))) } } } |