|
|
@@ -0,0 +1,33 @@
|
|
|
+package com.yingyangfly.evaluation.questionlist
|
|
|
+
|
|
|
+import android.view.MotionEvent
|
|
|
+import android.view.View
|
|
|
+import com.alibaba.android.arouter.facade.annotation.Route
|
|
|
+import com.yingyangfly.baselib.base.BaseActivity
|
|
|
+import com.yingyangfly.baselib.router.RouterUrlCommon
|
|
|
+import com.yingyangfly.evaluation.databinding.ActivityQuestionListBinding
|
|
|
+
|
|
|
+/**
|
|
|
+ * 试题列表
|
|
|
+ */
|
|
|
+@Route(path = RouterUrlCommon.questionList)
|
|
|
+class QuestionListActivity : BaseActivity<ActivityQuestionListBinding>(), View.OnTouchListener {
|
|
|
+
|
|
|
+ override fun initViews() {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun initListener() {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun initData() {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ override fun onTouch(v: View, event: MotionEvent): Boolean {
|
|
|
+ TODO("Not yet implemented")
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+}
|