For 语句仅在使用 Intent 传递数据时返回最后一个数据

Posted

技术标签:

【中文标题】For 语句仅在使用 Intent 传递数据时返回最后一个数据【英文标题】:For statement is only returning the last data when Passing Data Using Intent 【发布时间】:2018-10-05 08:14:46 【问题描述】:

我想使用 Intent 在活动之间传递数据。我已经可以发送数据,但问题是数据只包含最后一项。

我不确定,但我认为问题出在 for 语句基于以下参考:

Parsing JSON to custom ArrayList, only returning last item? Listview only displaying last item of arraylist

这是我的代码。我希望有人可以帮助解决我的问题。

private void getAllDataLocation() 
    loading = ProgressDialog.show(this, null, "Menampilkan Semua Tempat...", true, false);

    mApiService.getAllPartner().enqueue(new Callback<ResponsePartner>() 
        @Override
        public void onResponse(Call<ResponsePartner> call, Response<ResponsePartner> response) 
            if (response.isSuccessful()) 
                loading.dismiss();

                final List<PlaceItem> placeItems = response.body().getAllPlace();
                initMarker(placeItems);

             else 
                loading.dismiss();
                Toast.makeText(mContext, "Gagal Mengambil Data Semua Tempat", Toast.LENGTH_SHORT).show();
            
        

        @Override
        public void onFailure(Call<ResponsePartner> call, Throwable t) 
            loading.dismiss();
            Toast.makeText(mContext, "Koneksi Internet Bermasalah", Toast.LENGTH_SHORT).show();
        
    );

private void initMarker(final List<PlaceItem> listData) 
    //for each semua data dan tampilkan markernya
    for (int i = 0; i < listData.size(); i++) 
        final int finall = i;
        //set latlng nya
        LatLng marker_location = new LatLng(Double.parseDouble(listData.get(i).getLatitude()), Double.parseDouble(listData.get(i).getLongitude()));
        //tambah markernya
        marker_bg.setColorFilter(getResources().getColor(R.color.marker_primary));
        MarkerOptions markerOptions = new MarkerOptions().title(listData.get(i).getName()).position(marker_location);
        markerOptions.icon(BitmapDescriptorFactory.fromBitmap(Tools.createBitmapFromView(ActivityMaps.this, marker_view)));
        mMap.addMarker(markerOptions);
        //start for marker specific zoom ex: for specific city you want to zoom
        LatLng marker_zoom_specific = new LatLng(Constant.city_lat, Constant.city_lng);
        mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(marker_zoom_specific, 12));
        mMap.setOnInfoWindowClickListener(new GoogleMap.OnInfoWindowClickListener() 
            @Override
            public void onInfoWindowClick(Marker marker) 
                String id = listData.get(finall).getId();
                String cityName = listData.get(finall).getCityName();
                String description = listData.get(finall).getDescription();
                String address = listData.get(finall).getAddress();
                String phone = listData.get(finall).getPhone();
                String website = listData.get(finall).getWebsite();
                String logo = listData.get(finall).getLogo();
                String toolbarTitle = listData.get(finall).getName();
                String latitude = listData.get(finall).getLatitude();
                String longitude = listData.get(finall).getLongitude();

                Intent toDetail = new Intent(ActivityMaps.this, ActivityPlaceDetail.class);
                toDetail.putExtra(Constant.KEY_ID_PARTNER, id);
                toDetail.putExtra(Constant.KEY_NAME, toolbarTitle);
                toDetail.putExtra(Constant.KEY_CITY_NAME, cityName);
                toDetail.putExtra(Constant.KEY_DESCRIPTION, description);
                toDetail.putExtra(Constant.KEY_ADDRESS, address);
                toDetail.putExtra(Constant.KEY_PHONE, phone);
                toDetail.putExtra(Constant.KEY_WEBSITE, website);
                toDetail.putExtra(Constant.KEY_LOGO, logo);
                toDetail.putExtra(Constant.KEY_LATITUDE, latitude);
                toDetail.putExtra(Constant.KEY_LONGITUDE, longitude);
                startActivity(toDetail);
            
        );
    

【问题讨论】:

【参考方案1】:

最好传递整个类对象而不是传递单个键值对。

     PlaceItem placeItem = listData.get(finall).getId();
     intent.putExtra("data", placeItem);

确保您的 PlaceItem 实现 Serializable

当你得到意图使用时:

    Intent intent = getIntent();
    PlaceItem placeItem = (PlaceItem) intent.getSerializableExtra("data");
    String id = placeItem.getId();
    String cityName = placeItem.getCityName();

等等..

【讨论】:

decralre PlaceItem placeItem = listData.get(finall).getId() 时我有问题;消息是:必需的模型 PlaceItem。发现:Java.lang.String 我该怎么办? 变量placeItem应该声明为final。 这是我的活动地图ActivityMaps和活动地点详情ActivityPlaceDetail @Kusnadi 你的 PlaceItem 课程在哪里!你用 Serializable 实现了吗? 是的,我在 PlaceItem 类中添加了 Serializable 元素。

以上是关于For 语句仅在使用 Intent 传递数据时返回最后一个数据的主要内容,如果未能解决你的问题,请参考以下文章

Android8.0 Intent向下一个活动传递数据返回数据给上一个活动

使用 Intent 时传递数组数据为空

从适配器传递 Intent 时,onActivityResult Intent 为 null

onActivityResult 返回 Intent data.getData();仅在棉花糖和棒棒糖中始终为空

onActivityResult 返回 Intent data.getData();仅在棉花糖和棒棒糖中始终为空

Android7.0 Intent向下一个活动传递数据返回数据给上一个活动