mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Updated skip button from welcome activity to directly go to Assistant
This commit is contained in:
parent
d1029af180
commit
ea5b9518ad
1 changed files with 4 additions and 2 deletions
|
|
@ -69,8 +69,10 @@ class WelcomeActivity : AppCompatActivity() {
|
|||
binding.dotsIndicator.attachTo(viewPager)
|
||||
|
||||
binding.setSkipClickListener {
|
||||
Log.i("$TAG User clicked on 'skip' button, going to last page")
|
||||
viewPager.currentItem = PAGES - 1
|
||||
Log.i("$TAG User clicked on 'skip' button, going to Assistant")
|
||||
finish()
|
||||
val intent = Intent(this, AssistantActivity::class.java)
|
||||
startActivity(intent)
|
||||
}
|
||||
|
||||
binding.setNextClickListener {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue