Re: [android-developers] Eclipse plugins for SQLite3 and project import

2014-01-28 Thread Marina Cuello
I tried your Eve plugin when and it works like a charm. I had a lot of libraries, some even using others, and it got them ok. If you can, add an option/function to add a res folder automatically if there is none. Some libraries have an empty one, and when you import projects you cloned from Git

[android-developers] Re: CSS Height % Not working in Android App Screen

2014-01-28 Thread Nobu Games
I'm not sure if this is the cause but I noticed that your sample HTML page is missing a view port meta tag, which is commonly used in mobile web pages. The rendering logic is a bit different in mobile browsers due to the smaller screen size of mobile devices. Here is an explanation of mobile

[android-developers] DialogFragment created twice after orientation change

2014-01-28 Thread Daniel Rindt
Dear readers, i experienced a double call to onCreateDialog also to onCreateView in my project. here is my activity code: public class DialogTestActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);

[android-developers] detecting http client request abort

2014-01-28 Thread rukiman
In the Android client I call public void abortCurrentRequest() { if(mCurrentRequest != null) { mCurrentRequest.abort(); } } where mCurrentRequest is of type HttpPost. However my PHP REST script still continues to run even though the request was