Search:

Type: Posts; User: ddscs

Search: Search took 0.21 seconds.

  1. Replies
    0
    Views
    1,298

    Why my programmi s not using all CPU power?

    I have this code:

    ThreadPoolExecutor executor = new ThreadPoolExecutor(8, 16, 10,TimeUnit.MINUTES, new LinkedBlockingQueue<Runnable>() );
    executor.allowCoreThreadTimeOut(true);
    for(int i...
  2. Replies
    1
    Views
    1,211

    Gallery view and image aspect ratio.

    When I place gallery in a listview the images get stretched.How to prevent this?
  3. Replies
    3
    Views
    1,699

    Re: A problem with return.

    The string "null" is returned.
  4. Replies
    3
    Views
    1,699

    A problem with return.

    String rows[] = new String[] {KEY_GAL_ID};
    Cursor c = ourDatabase.query(GALLERY_TABLE, rows,KEY_ROWID + "=" + rowId,null, null, null, null);
    String result = "";

    if(c.moveToFirst())
    {...
Results 1 to 4 of 4