Я создаю ListActivity, в котором в строках есть только изображения. Я уже могу отображать изображения, но когда я пытаюсь нажать на строку, это ничего не делает. Я могу нажать на изображение, которое я добавил, но я хотел бы иметь возможность щелкнуть по всей строке, как обычная активность в списке. Может кто-нибудь сказать мне, как я могу это сделать? Не уверен, почему обратный код кода не улавливает мою первую строку, но вот он:
Все еще не удалось решить эту проблему. Кто-нибудь? * * 1003
public class AddNote extends ListActivity {
IconAdapter mAdapter;
private Button btnMove;
private Button btnDelete;
private Button btnSave;
private EditText etDescription;
private int iconPos = 0;
private String server;
private String project;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
final SharedPreferences app_preferences = PreferenceManager.getDefaultSharedPreferences(this);
final SharedPreferences.Editor editor = app_preferences.edit();
setContentView(R.layout.add_note);
mAdapter = new IconAdapter(this);
setListAdapter(mAdapter);
mAdapter.addIcons();
btnMove = (Button) findViewById(R.id.move);
btnDelete = (Button) findViewById(R.id.delete);
btnSave = (Button) findViewById(R.id.save);
etDescription = (EditText) findViewById(R.id.description);
server = app_preferences.getString("server", "none");
project = app_preferences.getString("project", "no project");
btnMove.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Log.e("Move", "Move");
}
});
btnDelete.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Log.e("Delete", "Delete");
}
});
btnSave.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (etDescription.getText().toString().trim().equals(""))
Toast.makeText(getApplicationContext(), "Please enter a description", Toast.LENGTH_SHORT).show();
else
{
UUID id = UUID.randomUUID();
saveMapIcon(id, iconPos, etDescription.getText().toString(), "0,0");
}
}
});
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id)
{
super.onListItemClick(l, v, position, id);
Log.e("Test", "testing....");
iconPos = position;
}
private void saveMapIcon(UUID theID, int position, String description, String location)
{
SharedPreferences app_preferences = PreferenceManager.getDefaultSharedPreferences(this);
SharedPreferences.Editor editor = app_preferences.edit();
String mapIcons = app_preferences.getString("mapNotes", "none");
if (mapIcons.equals("none"))
{
mapIcons = server + "|" + project + "|" + theID + "|" + position + "|" + description + "|" + location + "*";
}
else
{
mapIcons += server + "|" + project + "|" + theID + "|" + position + "|" + description + "|" + location + "*";
}
Log.e("position:", String.valueOf(position));
editor.putString("idToMove", theID.toString() + "|" + String.valueOf(position));
editor.putString("mapNotes", mapIcons);
editor.putBoolean("addingIcon", true);
editor.commit();
Log.e("Test", mapIcons);
Intent intent = null;
intent = new Intent(getApplicationContext(), GetMap.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
}
public class IconAdapter extends BaseAdapter {
private Context mContext;
ArrayList<View> imageViews = new ArrayList<View>();
private Integer[] mIconList = {
R.drawable.symbol1, R.drawable.symbol2, R.drawable.symbol3, R.drawable.symbol4, R.drawable.symbol5};
private ArrayList<Integer> mIcons = new ArrayList<Integer>();
public IconAdapter(Context c) {
mContext = c;
}
public int getCount() {
return mIconList.length;
}
public Object getItem(int position) {
return mIconList[position];
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
ImageView i = new ImageView(mContext);
i.setImageResource(mIcons.get(position));
return i;
}
public void addIcons() {
for (int i=0; i<mIconList.length; i++)
{
mIcons.add(mIconList[i]);
}
notifyDataSetChanged();
}
}
}