0
votes
2answers
21 views

Retrieving values from input texts android

I am trying to retrieve the values from the edit text input boxes and store them in a database. I am getting a null pointer exception and I am not sure why. Thanks in advance for the help :) This is ...
0
votes
1answer
91 views

store an EditText value into SQLite database line by line

i made an EditText that displayed value with multiple line like this... i want to keep that value in a SQLite database. this is the code i use: export.setOnClickListener(new OnClickListener() { ...
0
votes
0answers
100 views

Setting Text of EditText in DialogFragment not updating

I have a DialogFragment showing the details of a TableView with several EditTexts to update the data (from sqlite database). The first time i open the Fragment, it works normal, but if I open it up ...
0
votes
1answer
130 views

How To find EditText value using context menu option“Edit”

I am new to android, I am using context menu and I am trying to get EditText values those are saved in database. Please help me below is my code: title = (TextView) findViewById(R.id.Listname); ...
1
vote
1answer
85 views

Trying to save an integer on EditText and save on SQLite to calculate

<TableRow> <Button android:id="@+id/Date1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/Date1" ...
0
votes
3answers
152 views

How do i get the Values of Edit Text dynamically whose values should match up with already existing values in a table?

Hi everybody, For an Example, assume it : In a Question paper, i have to write the answer for given questions but there is no choice available. So overall i am attending all the questions. My ...