我正在使用ActionBarSherlock处理应用程序。我有多个标签。每个选项卡都有一个列表视图。每当用户点击列表中显示的项目时,我都实现了onItemLongClickListener来显示Toast消息。当我在带有API 8的仿真器和设备上执行此操作时,它可以正常工作。但是,当我使用API 17在设备/模拟器上部署相同内容时,我的应用程序最终没有响应并崩溃。
public class Frag_All extends Frag_Base implements OnItemLongClickListener {
private static final boolean DEBUG = true;
private static final String TAG = Frag_All.class.getSimpleName();
private ArrayList<CompanyInfo> Alllist;
private IndexableListView mListView;
@Override
public boolean onItemLongClick(AdapterView<?> arg0, View arg1, int arg2,
long arg3) {
// TODO Auto-generated method stub
CompanyInfo hCompany = (CompanyInfo) mListView.getAdapter().getItem(arg2);
Toast.makeText(getActivity(), "Position is: " + arg2 + " " + arg3 + " " + hCompany, Toast.LENGTH_SHORT).show();
return false;
}
我的列表布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="48dp"
android:orientation="vertical" >
<TextView
android:id="@+id/txtvwName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textStyle="bold"
android:textSize="15sp"
android:textColor="#000000"
android:textIsSelectable="true" />
<TextView
android:id="@+id/txtvwDetail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:textStyle="italic"
android:textSize="12sp"
android:textColor="#000000"
android:textIsSelectable="true"
android:layout_below="@id/txtvwName" />
</RelativeLayout>
有人能帮助我吗?