What does the following line of code do?
Toast toast = Toast.makeText(this,"Android ATC", Toast.LENGTH_LONG);
toast.setGravity(Gravity.TOP|Gravity.RIGH, 0, 0);
Which of the following is NOT true about SQLiteOperHelper class? (Choose two)
Consider the following code snippet:
String[] result_columns = new String[]{KEY_ID, COL1, COL2};
Cursor allRows = myDatabase.query(true, DATABASE_TABLE, result_columns,
null,null,null,null,null,null);
Which of the following prints out the values of COL1 column correctly if the result is not empty?
Currently there are no comments in this discussion, be the first to comment!