リスト項目をクリックして、クリックしたばかりの行を「チェック」できるようにするために、 OnItemClickListenerでCheckedTextViewを使用しようとしています。SherlockListFragment で SimpleAdapter を使用しています。CheckedTextView の状態は、今後ユーザーがアプリで使用できるように SharedPreferences に保存されます。
明確な解決策を見つけるために全体を見てきましたが、わかりません。私のコードは以下に基づいています: Listview with checkedtextview。これが私が得るエラーメッセージです:
「メソッド setOnItemClickListener(new AdapterView.OnItemClickListener(){}) は、ビュー タイプに対して定義されていません」
私はandroid.view.View.OnClickListener、android.widget.AdapterView.OnItemClickListener、android.widget.CheckedTextView、android.widget.AdapterViewをインポートします。これが私のコードです:
助けてくれてどうもありがとう!
public class SettingsFragment extends SherlockListFragment implement ActionBar.TabListener {
// Array of strings storing settings names
String[] settings_names = new String[] {
"Bluetooth",
"Speakerphone",
"test3",
"test4"
};
// Array of integers points to icons stored in /res/drawable-ldpi/
int[] settings_icons = new int[]{
R.drawable.device_access_bluetooth,
R.drawable.device_access_call,
R.drawable.device_access_alarms,
R.drawable.device_access_location_found
};
// Array of strings to store settings description
String[] settings_desc = new String[]{
"Activate Bluetooth connection",
"Enable Speakerphone",
"Enable ...",
"Enable ..."
};
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState){
// Each row in the list stores country name, currency and flag
List<HashMap<String,String>> aList = new ArrayList<HashMap<String,String>>();
for(int i=0;i<4;i++){
HashMap<String, String> hm = new HashMap<String,String>();
hm.put("set", settings_names[i]);
hm.put("desc", settings_desc[i]);
hm.put("icon", Integer.toString(settings_icons[i]) );
aList.add(hm);
}
// Keys used in Hashmap
String[] from = { "icon","set","desc" };
// Ids of views in settingsrow_layout
int[] to = { R.id.setting_icon,R.id.setting_name,R.id.setting_desc};
// Instantiating an adapter to store each items
// R.layout.settingsrow_layout defines the layout of each item
SimpleAdapter adapter = new SimpleAdapter(getActivity().getBaseContext(), aList, R.layout.settingsrow_layout, from, to);
/** Setting the array adapter to the listview */
setListAdapter(adapter);
// The list is identify by and ID in the xml file
final View thelist = container.findViewById(android.R.id.list);
thelist.setOnItemClickListener(new OnItemClickListener(){
public void onItemClick(AdapterView<?> parent, View view,int position,long id) {
View v = ((ViewGroup) thelist).getChildAt(position);
CheckedTextView ctv = (CheckedTextView) v.findViewById(R.id.setting_name);
ctv.setChecked(!ctv.isChecked());
}
});
LinearLayout mLinearLayout = (LinearLayout) inflater.inflate(R.layout.settingsfragment_layout,
container, false);
return mLinearLayout;
}
}
アダプターが使用する行 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="horizontal" >
<ImageView
android:id="@+id/setting_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/hello_world"
android:paddingTop="10dp"
android:paddingRight="10dp"
android:paddingBottom="10dp"/>
<LinearLayout
android:id="@+id/center_text_zone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<CheckedTextView
android:id="@+id/setting_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15sp"
android:textColor="#FFFFFF"
android:focusable="false" />
<TextView
android:id="@+id/setting_desc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"/>
</LinearLayout>
</LinearLayout >