0

我正在创建一个应用程序,其中包含由 Maps Engine 构建的带有一些自定义图标的 KML 文件。这是我使用的图标:http ://tctechcrunch2011.files.wordpress.com/2013/03/maps_engine_icons.png?w=300&h=216 。首先,我下载了它们并制作了一个屏幕,其中包含在 KML 文件中找到的地点列表(该列表将包含图标、名称和描述)。

在我导入 Sherlock 库之前,一切正常。之后,图标变成了箭头、X 和我们通常用于菜单和按钮的类似图标。我试图重命名我的图像文件,但没有任何反应。我在stackoverflow中进行了搜索,但一无所获。

这是我的代码 (当我导入 sherlock 栏时,我只需将 Theme 更改为 Theme.Sherlock 并将每个 Fragment 更改为 SherlockFragment 或将 FragmentActivity 更改为 SherlockFragmentActivity)

list_places_fragment.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/placeslistview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:cacheColorHint="@android:color/transparent"
        android:minHeight="?android:attr/listPreferredItemHeight"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

place_item.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:padding="12dip"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/icon"
        android:layout_width="42dp"
        android:layout_height="42dp"
        android:contentDescription="@string/app_name"
        android:layout_gravity="center_vertical|center_horizontal"
        android:layout_marginRight="8dp"
        android:src="@drawable/icone1001" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/placemark_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="left"
            android:isScrollContainer="true"
            android:text="@string/place_item_name"
            android:textColor="@android:color/black"
            android:textSize="22sp" />

        <TextView
            android:id="@+id/placemark_description"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:singleLine="true"
            android:text="@string/place_item_description"
            android:textColor="@color/transaction_tags_color"
            android:textSize="13sp" />
    </LinearLayout>

</LinearLayout>

ListPlacesFragment.java

public class ListPlacesFragment extends Fragment{

    PlacemarkAdapter placeAdapter;
    ListView placesListView;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View results = inflater.inflate(R.layout.list_places_fragment, container, false);
        placesListView = (ListView) results.findViewById(R.id.placeslistview);
            placeAdapter = new PlacemarkAdapter(getActivity(), DataHelper.data.places);
            placesListView.setAdapter(placeAdapter);    
        return results;
    }

PlaceMarkAdapter.java

public class PlacemarkAdapter extends ArrayAdapter<Placemark>{

    Context context;
    ArrayList<Placemark> places;

    public PlacemarkAdapter(Context context,
            List<Placemark> objects) {
        super(context, R.layout.place_item, objects);
        this.context = context;
        places = new ArrayList<Placemark>();
        places.addAll(objects);
    }

    @Override
    public int getCount() {
        return places.size();
    }

    @Override
    public Placemark getItem(int position) {
        return places.get(position);
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        ImageView icon;
        TextView title;
        TextView description;
        LayoutInflater inflater = (LayoutInflater) context
                .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View rowView = inflater.inflate(R.layout.place_item, parent, false);

        icon = (ImageView) rowView.findViewById(R.id.icon);
        title = (TextView) rowView.findViewById(R.id.placemark_name);
        description = (TextView) rowView.findViewById(R.id.placemark_description);

        Placemark placemark = places.get(position);
        title.setText(placemark.getName());
        description.setText(placemark.getDescription());
        icon.setImageResource(placemark.getIconID());

        return rowView;
    }
}

我想提一下,LogCat 中没有错误(即使在导入 Sherlock 之后),只是图标发生了奇怪的变化。

如果有人遇到此问题或知道解决方案,我将不胜感激!

我实现了解决方案:place_item.xml 的 id ICON 对 Sherlock 来说是独一无二的。我们不必用这个名称来识别任何元素!

4

1 回答 1

0

对于 ImageView 的 id,您似乎遇到了与 ActionBarSherlock 的命名空间冲突。在 xml 和适配器中将 id 更改为“icon”以外的其他内容,然后 ABS 应该停止为 ImageView 分配不同的图像。

于 2013-11-07T15:19:47.530 回答