Posts by Lucas Nascimento • 68 points
3 posts
-
2
votes1
answer630
viewsA: Add a button inside a Textview
You can assign the parameters in your TextView that will enable them to function as buttons. android:clickable="true" this you will say that your TextView has button function…
-
0
votes3
answers1106
viewsA: How to view query result in Sqlite?
You can use the class DatabaseHelper creating an object db using helper.getReadableDatabase(), as shown in the example below. SQLiteDatabase db = helper.getReadableDatabase(); Cursor cursor =…
-
3
votes1
answer1056
viewsQ: How to include . jsp file in solution?
I am developing Java web applications using JSP’s. I have a file called header.jsp, which contain links from CSS files and other things that are important to my system that is in the root directory.…