savasgul

Results 1 comments of savasgul

try code: val bundle = Bundle() bundle.putString("tableName", "nouns") bundle.putInt("tableId", 18) .click(NotificationShowedActivity::class.java, bundle) sending activity: val tableName = intent.extras.getString("tableName") val tableId = intent.extras.getInt("tableId") Toast.makeText(applicationContext, "table: $tableName tableId: $tableId", Toast.LENGTH_SHORT).show() happy coding.