summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/java/com/mapbox/mapboxsdk/testapp/activity/maplayout/TextureRecyclerViewActivity.kt
blob: 895389bc1ef815cdc24d96af19be856ab8d10c01 (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 a TexureView MapView in a RecyclerView.
 */
@SuppressLint("ClickableViewAccessibility")
class TextureRecyclerViewActivity : GLSurfaceRecyclerViewActivity() {

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