Я знаю, что есть некоторые вопросы по поводу пустых карт, но ответ всегда связан с проблемой API Key. Я знаю, что проблема не в этом, потому что он отлично работает, если я просто использую стандартный шаблон MapsActivity, при этом из Activity выполняется следующее:
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
И макет Activity выглядит следующим образом:
<FrameLayout android:id="@+id/container_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/my_toolbar"
xmlns:android="http://schemas.android.com/apk/res/android">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapsActivity" />
Проблема возникает, когда я пытаюсь создать общую c хост-активность (для целей единой архитектуры Activity), которая требует от меня создания фрагмента (вместо Activity), из которого можно вызвать лог карты c. Когда я делаю это, я получаю пустой экран вместо карты, но журналы показывают, что объект GoogleMap не равен нулю и что вызывается обратный вызов onMapReady. Приложение не трескает sh, и я не вижу никаких понятных ошибок. Вот мой код ...
fragment_map. xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapFragment">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/mapSubFragment"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapFragment" />
</FrameLayout>
MapFragment. java
public class MapFragment extends Fragment implements OnMapReadyCallback, GoogleMap.OnInfoWindowClickListener {
private GoogleMap mMap;
public MapFragment() {
//Not sure why this is necessary, boilerplate from Navigation editor
}
public static MapFragment newInstance() {
//Not sure why this is necessary, boilerplate from Navigation editor
MapFragment fragment = new MapFragment();
return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_map, container, false);
}
@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getChildFragmentManager()
.findFragmentById(R.id.mapSubFragment);
Log.i("Code", String.valueOf(R.id.mapSubFragment));
mapFragment.getMapAsync(this);
}
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
Log.i("Code", String.valueOf(mMap == null));
//Check if user has location permissions granted
setupMap();
}
}
И затем действие хоста ...
NavHostActivity. xml
public class NavHostActivity extends AppCompatActivity {
private NavController navController;
//Methods go here to inflate the toolbar
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_nav_host);
navController = Navigation.findNavController(this, R.id.nav_host_fragment);
Toolbar toolbar = findViewById(R.id.my_toolbar);
setSupportActionBar(toolbar);
}
@Override
public boolean onSupportNavigateUp() {
// Allows NavigationUI to support proper up navigation or the drawer layout
// drawer menu, depending on the situation.
return navController.navigateUp();
}
}
Схема для этого действия хоста ...
activity_nav_host. xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".NavHostActivity">
//Toolbar stuff goes here
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:defaultNavHost="true"
app:navGraph="@navigation/nav_graph" />
</RelativeLayout>
И, наконец, мой манифест содержит следующее:
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/google_maps_key" />
Спасибо за любую помощь, я в тупике!