summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/activity/maplayout/TextureRecyclerViewActivity.kt
blob: 940d4b4f195a58d4212b030b0a4c79429d41b426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.mapbox.mapboxsdk.testapp.activity.maplayout

import android.annotation.SuppressLint
import com.mapbox.mapboxsdk.testapp.R

/**
 * TestActivity showcasing how to integrate multiple TexureView MapViews in a RecyclerView.
 */
@SuppressLint("ClickableViewAccessibility")
class TextureRecyclerViewActivity : GLSurfaceRecyclerViewActivity() {

  override fun getMapItemLayoutId(): Int {
    return R.layout.item_map_texture
  }
}