у меня есть коллекция ArrayList<CategoryStruct> categoryStruct которая выводится в ListView CategoriesList. Я пишу обработчик события нажатия на элемент списка, но почему-то программа его не видит?
код XML разметки
XML |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
| <?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:background="@color/backColor"
android:orientation="vertical">
<Button
android:id="@+id/addBtn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Добавить категорию"
android:background="@color/btnColor"
android:onClick="AddCategory"/>
<EditText
android:id="@+id/txtsearch"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="Search"
/>
<ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/ListColor">
</ListView>
</LinearLayout> |
|
Код класса java с обработчиком CategoriesList.setOnItemClickListener
Java |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
| public class CategoriesActivity extends AppCompatActivity {
int currentUserId;
String currentUserName;
ListView CategoriesList;
DatabaseHelper databaseHelper;
SQLiteDatabase db;
CategoryAdapter categoryAdapter;
ArrayList<CategoryStruct> categoryStruct;
ArrayAdapter<CategoryStruct> adapter;
EditText editText;
Button addBtn;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.categories_layout);
Bundle arguments = getIntent().getExtras();
currentUserId = arguments.getInt("ID");
//currentUserName=arguments.getString("NAME");
CategoriesList = (ListView) findViewById(R.id.listview);
databaseHelper = new DatabaseHelper(this);
InitList();
CategoriesList.setOnItemClickListener(new AdapterView.OnItemClickListener(){
@Override
public void onItemClick(AdapterView<?> parent, View v, int position, long id)
{
// по позиции получаем выбранный элемент
Object selectedItem = categoryAdapter.getItem(position);
}
});
editText = (EditText)findViewById(R.id.txtsearch);
editText.addTextChangedListener(new TextWatcher() {
// работающий код
}
@Override
public void afterTextChanged(Editable s) {
//ничего
}
});
}
public void AddCategory(View view)
{
//работающий код
}
public void searchItem(String textToSearch){
//работающий код
}
public void InitList()
{
//работающий код
}
} |
|