summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/mapboxfreezerepro/views/EmptyView.kt
blob: d20b5334ea2d5bb8b6dc719c9edd8afc86eaa55e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.mapbox.mapboxsdk.testapp.mapboxfreezerepro.views

import android.content.Context
import android.util.AttributeSet
import android.view.View
import android.widget.FrameLayout
import com.mapbox.mapboxsdk.testapp.R

class EmptyView(context: Context, attributeSet: AttributeSet? = null) : FrameLayout(context, attributeSet) {

    init {
        View.inflate(context, R.layout.empty_view, this)
    }
}