-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
184 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
android-auto-app/src/main/java/com/mapbox/maps/testapp/auto/app/MainActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,29 @@ | ||
package com.mapbox.maps.testapp.auto.app | ||
|
||
import android.os.Bundle | ||
import android.widget.Toast | ||
import androidx.appcompat.app.AppCompatActivity | ||
import androidx.appcompat.widget.SwitchCompat | ||
import com.mapbox.maps.testapp.auto.R | ||
import com.mapbox.maps.testapp.auto.service.CarAppPreferences | ||
|
||
class MainActivity : AppCompatActivity() { | ||
override fun onCreate(savedInstanceState: Bundle?) { | ||
super.onCreate(savedInstanceState) | ||
setContentView(R.layout.activity_main) | ||
val switchButton: SwitchCompat = findViewById(R.id.switchButton) | ||
|
||
val carAppPreferences = CarAppPreferences(applicationContext) | ||
switchButton.isChecked = carAppPreferences.isCustomCallbackEnabled() | ||
switchButton.setOnCheckedChangeListener { _, isChecked -> | ||
if (carAppPreferences.isCustomCallbackEnabled() != isChecked) { | ||
Toast.makeText( | ||
this, | ||
"Custom setting changed, reconnect Android Auto to ensure a restart", | ||
Toast.LENGTH_LONG | ||
).show() | ||
carAppPreferences.enableCustomCallback(isChecked) | ||
} | ||
} | ||
} | ||
} |
81 changes: 81 additions & 0 deletions
81
android-auto-app/src/main/java/com/mapbox/maps/testapp/auto/custom/CustomMapSession.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package com.mapbox.maps.testapp.auto.custom | ||
|
||
import android.Manifest.permission.ACCESS_FINE_LOCATION | ||
import android.content.Intent | ||
import android.content.pm.PackageManager.PERMISSION_GRANTED | ||
import android.content.res.Configuration | ||
import androidx.car.app.AppManager | ||
import androidx.car.app.Screen | ||
import androidx.car.app.ScreenManager | ||
import androidx.car.app.Session | ||
import androidx.car.app.SurfaceCallback | ||
import androidx.lifecycle.DefaultLifecycleObserver | ||
import androidx.lifecycle.LifecycleOwner | ||
import com.mapbox.maps.MapInitOptions | ||
import com.mapbox.maps.MapboxExperimental | ||
import com.mapbox.maps.extension.androidauto.MapboxCarMap | ||
import com.mapbox.maps.logI | ||
import com.mapbox.maps.testapp.auto.car.CarAnimationThreadController | ||
import com.mapbox.maps.testapp.auto.car.CarMapShowcase | ||
import com.mapbox.maps.testapp.auto.car.CarMapWidgets | ||
import com.mapbox.maps.testapp.auto.car.MapScreen | ||
import com.mapbox.maps.testapp.auto.car.RequestPermissionScreen | ||
|
||
/** | ||
* This session demonstrates an ability to upgrade the androidx.car.app:app: dependency to a new | ||
* version and use the [SurfaceCallback.onClick] function. | ||
*/ | ||
@OptIn(MapboxExperimental::class) | ||
class CustomMapSession : Session() { | ||
|
||
private val carAnimationThreadController = CarAnimationThreadController() | ||
private val carMapWidgets = CarMapWidgets() | ||
private val carMapShowcase = CarMapShowcase() | ||
private val mapboxCarMap = MapboxCarMap() | ||
|
||
init { | ||
lifecycle.addObserver(object : DefaultLifecycleObserver { | ||
override fun onCreate(owner: LifecycleOwner) { | ||
val mapInitOptions = MapInitOptions(carContext) | ||
mapboxCarMap.registerObserver(carAnimationThreadController) | ||
mapboxCarMap.registerObserver(carMapWidgets) | ||
mapboxCarMap.registerObserver(carMapShowcase) | ||
|
||
val surfaceCallback = mapboxCarMap.prepareSurfaceCallback(carContext, mapInitOptions) | ||
carContext.getCarService(AppManager::class.java) | ||
.setSurfaceCallback(object : SurfaceCallbackInterceptor(surfaceCallback) { | ||
override fun onClick(x: Float, y: Float) { | ||
super.onClick(x, y) | ||
onMapSurfaceClick(x, y) | ||
} | ||
}) | ||
} | ||
|
||
override fun onDestroy(owner: LifecycleOwner) { | ||
// This may not be needed, but it will ensure the reference is removed. | ||
carContext.getCarService(AppManager::class.java).setSurfaceCallback(null) | ||
|
||
mapboxCarMap.unregisterObserver(carMapShowcase) | ||
mapboxCarMap.unregisterObserver(carMapWidgets) | ||
mapboxCarMap.unregisterObserver(carAnimationThreadController) | ||
} | ||
}) | ||
} | ||
|
||
override fun onCreateScreen(intent: Intent): Screen { | ||
val mapScreen = MapScreen(mapboxCarMap) | ||
return if (carContext.checkSelfPermission(ACCESS_FINE_LOCATION) != PERMISSION_GRANTED) { | ||
carContext.getCarService(ScreenManager::class.java) | ||
.push(mapScreen) | ||
RequestPermissionScreen(carContext) | ||
} else mapScreen | ||
} | ||
|
||
override fun onCarConfigurationChanged(newConfiguration: Configuration) { | ||
carMapShowcase.loadMapStyle(carContext) | ||
} | ||
|
||
private fun onMapSurfaceClick(x: Float, y: Float) { | ||
logI("CustomMapSession", "onClick $x $y") | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
...-auto-app/src/main/java/com/mapbox/maps/testapp/auto/custom/SurfaceCallbackInterceptor.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package com.mapbox.maps.testapp.auto.custom | ||
|
||
import android.graphics.Rect | ||
import androidx.car.app.SurfaceCallback | ||
import androidx.car.app.SurfaceContainer | ||
|
||
abstract class SurfaceCallbackInterceptor constructor( | ||
private val surfaceCallback: SurfaceCallback | ||
) : SurfaceCallback { | ||
|
||
override fun onSurfaceAvailable(surfaceContainer: SurfaceContainer) = | ||
surfaceCallback.onSurfaceAvailable(surfaceContainer) | ||
|
||
override fun onSurfaceDestroyed(surfaceContainer: SurfaceContainer) = | ||
surfaceCallback.onSurfaceDestroyed(surfaceContainer) | ||
|
||
override fun onVisibleAreaChanged(visibleArea: Rect) = | ||
surfaceCallback.onVisibleAreaChanged(visibleArea) | ||
|
||
override fun onStableAreaChanged(stableArea: Rect) = | ||
surfaceCallback.onStableAreaChanged(stableArea) | ||
|
||
override fun onScale(focusX: Float, focusY: Float, scaleFactor: Float) = | ||
surfaceCallback.onScale(focusX, focusY, scaleFactor) | ||
|
||
override fun onScroll(distanceX: Float, distanceY: Float) = | ||
surfaceCallback.onScroll(distanceX, distanceY) | ||
|
||
override fun onFling(velocityX: Float, velocityY: Float) = | ||
surfaceCallback.onFling(velocityX, velocityY) | ||
|
||
override fun onClick(x: Float, y: Float) = | ||
surfaceCallback.onClick(x, y) | ||
} |
26 changes: 26 additions & 0 deletions
26
android-auto-app/src/main/java/com/mapbox/maps/testapp/auto/service/CarAppPreferences.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.mapbox.maps.testapp.auto.service | ||
|
||
import android.content.Context | ||
|
||
/** | ||
* Class gives you the ability to modify the demo app shared preferences. | ||
*/ | ||
class CarAppPreferences(context: Context) { | ||
|
||
private val sharedPreferences by lazy { | ||
context.getSharedPreferences(SHARED_PREFERENCES_KEY, Context.MODE_PRIVATE) | ||
} | ||
|
||
fun enableCustomCallback(enable: Boolean) { | ||
sharedPreferences.edit().putBoolean(BOOLEAN_KEY_ENABLE_CUSTOM_CALLBACK, enable).apply() | ||
} | ||
|
||
fun isCustomCallbackEnabled() = sharedPreferences | ||
.getBoolean(BOOLEAN_KEY_ENABLE_CUSTOM_CALLBACK, false) | ||
|
||
private companion object { | ||
private const val SHARED_PREFERENCES_KEY = "mapbox_maps_android_auto_app" | ||
|
||
private const val BOOLEAN_KEY_ENABLE_CUSTOM_CALLBACK = "enable_custom_callback" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters