This file contains hidden or 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
LinearLayout bottomSheet = findViewById(R.id.bottom_sheet_behavior_id); | |
BottomSheetBehavior bottomSheetBehavior = BottomSheetBehavior.from(bottomSheet); | |
// .. | |
// here you could find all the UI views inside your bottom sheet and initialize them | |
// .. | |
// .. | |
// setting the bottom sheet callback for interacting with state changes and sliding | |
bottomSheetBehavior.setBottomSheetCallback(new BottomSheetBehavior.BottomSheetCallback() { |
This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:app="http://schemas.android.com/apk/res-auto" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:orientation="vertical" | |
android:background="@drawable/your_bottom_sheet_background" | |
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior" | |
app:behavior_hideable="true" |
This file contains hidden or 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
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { | |
Intent intent = new Intent(); | |
String packageName = getPackageName(); | |
PowerManager pm = (PowerManager) getSystemService(POWER_SERVICE); | |
if (!pm.isIgnoringBatteryOptimizations(packageName)) { | |
intent.setAction(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS); | |
intent.setData(Uri.parse("package:" + packageName)); | |
startActivity(intent); | |
} | |
} |
This file contains hidden or 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
final WifiManager wifimanager = (WifiManager) getApplicationContext().getSystemService(WIFI_SERVICE); | |
wifimanager.registerScanResultsCallback(getMainExecutor(), new WifiManager.ScanResultsCallback() { | |
@Override | |
public void onScanResultsAvailable() { | |
List<ScanResult> results = wifimanager.getScanResults(); | |
for (ScanResult result : results) { | |
System.out.println(result.BSSID); | |
} | |
} |
This file contains hidden or 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
mLocationManager.removeTestProvider(LocationManager.GPS_PROVIDER); | |
mLocationManager.removeTestProvider(LocationManager.NETWORK_PROVIDER); |
This file contains hidden or 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
private void setMock(String provider, double latitude, double longitude) { | |
mLocationManager.addTestProvider (provider, false, false, false, false, false, true, true, 0, 5); | |
Location newLocation = new Location(provider); | |
newLocation.setLatitude(latitude); | |
newLocation.setLongitude(longitude); | |
newLocation.setAltitude(3F); | |
newLocation.setTime(System.currentTimeMillis()); | |
newLocation.setSpeed(0.01F); |
This file contains hidden or 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
... | |
if (!isMockLocationEnabled) | |
startActivity(new Intent(android.provider.Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS)); | |
... | |
private boolean isMockLocationEnabled() | |
{ | |
boolean isMockLocation; | |
try { | |
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) { |
This file contains hidden or 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
// ':video' module gradle file. | |
dependencies { | |
implementation project(':app') | |
implementation project(':camera') | |
... | |
} |
This file contains hidden or 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
android { | |
dependenciesInfo { | |
// Disables dependency metadata when building APKs. | |
includeInApk = false | |
// Disables dependency metadata when building Android App Bundles. | |
includeInBundle = false | |
} | |
} |
This file contains hidden or 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
final WifiNetworkSuggestion suggestion1 = | |
new WifiNetworkSuggestion.Builder() | |
.setSsid("navigine_test_1") | |
.build() | |
final WifiNetworkSuggestion suggestion2 = | |
new WifiNetworkSuggestion.Builder() | |
.setSsid("navigine_test_2") | |
.setWpa2Passphrase("navigine_test_2_pass") | |
.build() |