Skip to main content

Good Tools To Develop a GUI in Android?



I would like to know if there exists a good tool to implement a design in Android like tools to make easy to implement and that can generate XML





Thanks for your help.



Source: Tips4all

Comments

  1. Use DroidDraw for better GUI layouts.

    ReplyDelete
  2. Yes there is the Eclipse AndroidDeveloperTools (ADT) plugin which has a pretty good GUI prototyping tool and there is the Droiddraw project.

    However none of them will ever replace manual UI design with XML or code.

    ReplyDelete
  3. The de facto tool for development in Android is Eclipse, which provides XML modelling tools as well

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...