| | |
| | | package cn.sinata.xldutils.activity |
| | | |
| | | import android.graphics.Color |
| | | import android.view.View |
| | | import android.view.ViewGroup |
| | | import android.widget.LinearLayout |
| | |
| | | val bg_title by lazy { |
| | | find<View>(R.id.bg_title) |
| | | } |
| | | val base_root by lazy { |
| | | find<View>(R.id.base_root) |
| | | } |
| | | |
| | | val titleBar by lazy { |
| | | val titleBar = find<TitleBar>(R.id.titleBar) |
| | |
| | | if (layoutResID > 0) { |
| | | layoutInflater.inflate(layoutResID, llContainer, true) |
| | | } |
| | | base_root.setBackgroundColor(Color.parseColor("#C3BFB3")) |
| | | } |
| | | |
| | | override fun setContentView(view: View?) { |