This is a simple "Diary" app and I will write any text entered into the EditText to a SQLite database table when the user presses the "Done" button on the keypad.
In order to do this, I must be able to read the "Value".
I can do so with:
Code:
But I must be able to read the Value from the "txtEvents_Click" event.
I tried:
Code:
But this does not work.
Other problems:
When the IME keypad is displayed, the CustomListView does not scroll and the keypad covers the EditText?
Clicking on the Tabs, the current Tab does not change color to show that it is active.
I have attached the Zip file of the project.
In order to do this, I must be able to read the "Value".
I can do so with:
Code:
B4X:
Sub clvEvents_ItemClick(Index As Int, Value As Object)
Log(Index & " = " & Value)
End Sub
I tried:
Code:
B4X:
Sub txtEvents_Click(Index As Int, Value As Object)
Log("From txtEdit: " & Value)
End Sub
Other problems:
When the IME keypad is displayed, the CustomListView does not scroll and the keypad covers the EditText?
Clicking on the Tabs, the current Tab does not change color to show that it is active.
I have attached the Zip file of the project.