forked from melod1n/fast-messenger
12 lines
245 B
Kotlin
12 lines
245 B
Kotlin
package com.meloda.fast.base
|
|
|
|
import android.view.View
|
|
import androidx.appcompat.app.AppCompatActivity
|
|
|
|
abstract class BaseActivity : AppCompatActivity() {
|
|
|
|
fun getRootView(): View {
|
|
return findViewById(android.R.id.content)
|
|
}
|
|
|
|
} |