繁体   English   中英

我已经用TextView和ImageView创建了一个Place对象,但是当我尝试添加一个place对象时出现此错误

[英]I have created a Place object with a TextView and ImageView but I am getting this error when I try to add a place object

每当我尝试将项目添加到对象时,都会出现错误

我试图在android.support.v4.app和另一个之间切换,但是它不起作用

放置对象代码

package com.example.tourguide.ui.main;
public class Place {


/** String resource ID for the name of the place */
private int mDefaultTranslationId;

private int mImageResourceId;

public Place(int defaultTranslationId, int imageResourceId) {
    mDefaultTranslationId = defaultTranslationId;
    mImageResourceId = imageResourceId;
}

/**
 * Get the string resource ID for the name of the place.
 */
public int getPlaceName() {
    return mDefaultTranslationId;
}

/**
 * Return the image resource ID of the place.
 */
public int getImageResourceId() {
    return mImageResourceId;
}

}

放置适配器代码

package com.example.tourguide.ui.main;

import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.ImageView;
import android.widget.TextView;

import com.example.tourguide.R;

import java.util.ArrayList;

public class PlaceAdapter extends ArrayAdapter<Place> {

public PlaceAdapter(Context context, ArrayList<Place> places) {
    super(context, 0, places);
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    // Check if an existing view is being reused, otherwise inflate the 
view
    View listItemView = convertView;
    if (listItemView == null) {
        listItemView = LayoutInflater.from(getContext()).inflate(
                R.layout.list_item, parent, false);
    }


    Place currentPlace = getItem(position);

    TextView placeName = (TextView) 
listItemView.findViewById(R.id.ImageViewText);

    placeName.setText(currentPlace.getPlaceName ());

    ImageView imageView = (ImageView) 
listItemView.findViewById(R.id.ImageView);

        imageView.setImageResource ( currentPlace.getImageResourceId () );

    return listItemView;
}

}

当我尝试在Place对象中添加项目时,这是我得到错误的地方

package com.example.tourguide.ui.main;


import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AdapterView;
import android.widget.ListView;

import androidx.fragment.app.Fragment;

import com.example.tourguide.R;

import java.util.ArrayList;

public class MonumentsFragment extends Fragment {

public MonumentsFragment() {
    // Required empty public constructor
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View rootView = inflater.inflate( R.layout.places_list, container, 
  false);

    final ArrayList<Place> places = new ArrayList<> ();

    places.add(R.string.app_name, R.drawable.google_maps);


    PlaceAdapter adapter = new PlaceAdapter (getActivity(), places);

    ListView listView = (ListView) rootView.findViewById(R.id.list);

    listView.setAdapter(adapter);


    listView.setOnItemClickListener(new AdapterView.OnItemClickListener() 
{
        @Override
        public void onItemClick(AdapterView<?> adapterView, View view, int 
position, long l) {

            Place place = places.get(position);
        }
    });

    return rootView;

    }
}

这是我收到的错误消息

第二个参数类型错误。 找到:'int',必需:'com.example.tourguide.ui.main.Place'检查信息:ArrayList中的add(int,com.example.tourguide.ui.main.Place)无法应用于(int,int) )

您正在尝试添加名称和图像以直接列出。 您应该做的是首先创建一个放置对象,然后将其添加到列表中。

ArrayList<Place> places = new ArrayList<> ();
// create a Place Object
Place place = new Place(R.string.app_name, R.drawable.google_maps)
// Then add the object to the list
places.add(place);

编辑

您可以将任何类型的数据添加到列表中,但是它必须与初始化数组时声明的类型相同。 例如,您正在制作一个场所列表,因此只能将场所对象添加到数组中。

add方法采用两个参数,首先是索引,然后是对象。 如果仅使用list.add(E element) ,它将把Object附加到列表的末尾。

public void add(int index,E元素)

将指定的元素插入此列表中的指定位置。 将当前在该位置的元素(如果有)和任何后续元素右移(将其索引添加一个)。

您可以从此文档中找到有关ArrayList的更多信息

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM