DemoActivity.kt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. package com.suyghur.dolin
  2. import android.app.Activity
  3. import android.app.AlertDialog
  4. import android.os.Bundle
  5. import android.view.KeyEvent
  6. import android.view.View
  7. import android.widget.Button
  8. import android.widget.LinearLayout
  9. import com.suyghur.dolin.zap.Zap
  10. import com.suyghur.dolin.zap.entity.Level
  11. import com.suyghur.dolin.zap.util.FileUtils
  12. import com.suyghur.dolin.zap.util.LevelUtils
  13. import kotlin.system.exitProcess
  14. /**
  15. * @author #Suyghur.
  16. * Created on 4/6/21
  17. */
  18. class DemoActivity : Activity(), View.OnClickListener {
  19. private val events: MutableList<Item> = mutableListOf(
  20. Item(0, "Zap日志测试"),
  21. Item(1, "申请多个危险权限")
  22. )
  23. override fun onCreate(savedInstanceState: Bundle?) {
  24. super.onCreate(savedInstanceState)
  25. val layout = LinearLayout(this)
  26. layout.orientation = LinearLayout.VERTICAL
  27. for (event in events) {
  28. with(Button(this)) {
  29. tag = event.id
  30. text = event.text
  31. setOnClickListener(this@DemoActivity)
  32. layout.addView(this)
  33. }
  34. }
  35. setContentView(layout)
  36. }
  37. override fun onKeyDown(keyCode: Int, event: KeyEvent?): Boolean {
  38. if (keyCode == KeyEvent.KEYCODE_BACK) {
  39. AlertDialog.Builder(this)
  40. .setTitle("退出应用")
  41. .setCancelable(false)
  42. .setMessage("是否退出")
  43. .setPositiveButton("确认") { dialog, _ ->
  44. dialog?.dismiss()
  45. finish()
  46. }
  47. .setNegativeButton("取消") { dialog, _ ->
  48. dialog?.dismiss()
  49. }.show()
  50. return true
  51. }
  52. return super.onKeyDown(keyCode, event)
  53. }
  54. override fun onDestroy() {
  55. super.onDestroy()
  56. Zap.recycle()
  57. exitProcess(0)
  58. }
  59. override fun onClick(v: View?) {
  60. v?.apply {
  61. when (tag as Int) {
  62. 0 -> ZapActivity.start(this@DemoActivity)
  63. }
  64. }
  65. }
  66. }