Posts in 2022
  • How to make Toast message?

    Monday, February 28, 2022 in Android

    You can find a code sample to make a Toast message in Android Studio Example-1 val text = "Hello toast!" val duration = Toast.LENGTH_SHORT val toast = Toast.makeText(applicationContext, text, duration) toast.show() or you can call directly …

    Read more

Posts in 2020
  • Markdown Syntax Guide

    Wednesday, January 01, 2020 in Posts

    This article offers a sample of basic Markdown syntax that can be used in Hugo content files. Basic Syntax Headings # Heading 1 ## Heading 2 ### Heading 3 #### Heading 4 ##### Heading 5 ###### Heading 6 Heading 2 Heading 3 Heading 4 Heading 5 Heading …

    Read more

Posts in 2016