https://fyprojects.com/detail/Android%20Create%20Bottom%20Sheet%20Map%20Like%20Google%20Maps/5 Android How To Create Bottom Sheet Map Like Google Maps 1. Project Structure Package name : map.bottomsheet.fyprojects.com.bottomsheetmap 2. Gradle apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "map.bottomsheet.fyprojects.com.bottomsheetmap" minSdkVersion 16 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7...