• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. V

    Apps Accessing sqlite3 database

    I am working with the NotePad tutorial published in the android website. This tutorial has code to create a sqlite database and do CRUD operations. It works great, but I am not able to find the database or table anywhere in my system. I ran the sqlite3.exe command from the android tools...
  2. V

    Apps Handler question

    I have a code like this: private void startHandler(){ final Handler handler = new Handler(); final Runnable r = new Runnable() { public void run() { TableLayout tableLayout = (TableLayout)findViewById(R.id.TableLayout01); if(count...
  3. V

    Apps Help with image resizing

    Hello, I have a TableLayout that dynamically adds TableRow elements during runtime. My current design adds five table rows, and each table row adds five images as shown below: TableLayout tableLayout = (TableLayout)findViewById(R.id.TableLayout02); for(int i=0; i<5; i++){...