0
こんにちは私は、より多くのフラグメントを持つビューページャを持っています。 3番目のビューで私はマップを入れたい。フラグメントのfindFragmentByIdが機能しない
私の地図のレイアウト。 (fragment_polohaの↓)
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map2"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="paradox.galopshop.InfoItem" />
</FrameLayout>
私はページビューで画面を設定するには、このクラスを持っています。
public class DemoFragment extends Fragment implements OnMapReadyCallback {
public static FragmentManager frag;
LayoutInflater inflater;
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
@Nullable Bundle savedInstanceState) {
int position = FragmentPagerItem.getPosition(getArguments());
switch (position){
case 0: return inflater.inflate(R.layout.fragment_strucne, container, false);
case 1: return inflater.inflate(R.layout.fragment_opis, container, false);
case 2: return inflater.inflate(R.layout.fragment_poloha, container, false);
case 3: return inflater.inflate(R.layout.fragment_demo2, container, false);
}
return inflater.inflate(R.layout.fragment_strucne, container, false);
}
@Override
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
int position = FragmentPagerItem.getPosition(getArguments());
switch (position){
case 0: break;
case 1: break;
case 2:
// Get the SupportMapFragment and request notification
// when the map is ready to be used.
FragmentManager fm = getActivity().getSupportFragmentManager();
SupportMapFragment mapFragment = ((SupportMapFragment) fm.findFragmentById(R.id.map2));
// SupportMapFragment mapFragment = (SupportMapFragment) view.findViewById(R.id.map);
mapFragment.getMapAsync(this);
break;
case 3: break;
}
//TextView title = (TextView) view.findViewById(R.id.item_title);
//title.setText(String.valueOf(position*3));
}
/**
* Manipulates the map when it's available.
* The API invokes this callback when the map is ready to be used.
* This is where we can add markers or lines, add listeners or move the camera. In this case,
* we just add a marker near Sydney, Australia.
* If Google Play services is not installed on the device, the user receives a prompt to install
* Play services inside the SupportMapFragment. The API invokes this method after the user has
* installed Google Play services and returned to the app.
*/
@Override
public void onMapReady(GoogleMap googleMap) {
// Add a marker in Sydney, Australia,
// and move the map's camera to the same location.
LatLng sydney = new LatLng(48.3061, 18.0764);
googleMap.addMarker(new MarkerOptions().position(sydney)
.title("Marker in Nitra"));
googleMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(sydney, 15.0f));
}
}
mapFragment = nullが原因でViewCreatedアプリがクラッシュしました。しかし、なぜそれがnullであるのかわかりません。
私にアドバイスをお願いします。私は時間が私の問題を解決するためにしようと試みたが、unsuccesfull
はあなたのようなこのマップ=((MapFragment)getFragmentManager()findFragmentById(R.id.map)。)SupporrtFragmentの代わりにMapFragmentを使用することができます。 map.getMapAsync(this); –
フラグメントタグは不要フレームレイアウトは十分です – Raj
SupportMapFragmentを試してみましょうmapFragment =((SupportMapFragment)getFragmentManager()。findFragmentById(R.id.map2));しかしそれは同じnullです@Ravindra Kushwaha – trip07