我正在创建一个应用程序,其中包含由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之后),只需更改图标即可。
如果有人遇到此问题或知道解决方案,我很感激!
我实现了解决方案: id ICON of place_item.xml对于Sherlock来说是唯一的。我们不必通过此名称识别任何元素!
答案 0 :(得分:0)
您似乎遇到了与ActionBarSherlock的名称空间冲突,因为您的ImageView的ID。在xml和适配器中将id更改为“icon”以外的其他内容,然后ABS应该停止为ImageView分配不同的图像。