0
votes
0answers
7 views
Will porting my HTML5 Canvas game to native android and/or iOS be more difficult if I use HTML for the canvas UI?
I'm making an HTML5 canvas game and I'm currently developing the GUI. I'm at a crossroads:
Do I render these ui components by hand and implement the functionality in javascript?
Do I use HTML ...
2
votes
2answers
15 views
sliding layout like google maps v7
Im trying to get the same result as new google maps, when you "tap" on any "marker" you get a little layout in bottom of the screen, all the info about the srteet view and other details shown there, ...
0
votes
0answers
30 views
layout is not showing properly in devices of 7inches tablets
I designed a layout using samsung galaxy tab2 having 7 inches screen.when i installed on different tab like asus fonepad having same 7 inches screen size, the layout is not showing properly.
where ...
-1
votes
0answers
16 views
Android Eclipse UI messed up
My eclipse was running fine until yesterday when I installed CDT (thinking it would enable me do C/C++ projects).
After CDT installation, eclipse restarted and my whole UI was messed. I uninstalled ...
0
votes
0answers
18 views
Android GUI like catch and Any.do
Hi I Need to design very much interactive UI for a program i am working on.
I found two apps in play store which actually help me get started with the UI design.
The any.do the way how it adds tasks ...
2
votes
1answer
31 views
Align fragment on bottom of screen
Hi I have a linear layout with a fragment widget placed inside it. I'm trying get the fragment to show up on the bottom of the screen. The page may be scrollable in the future so I want it anchored on ...
0
votes
0answers
31 views
Why is does the Android Navigation Drawer stick? (recreated in official demo app)
I've implemented the new Navigation Drawer pattern in an Android app and for some reason it will stick with the 20dp tab preview probably close to 10% of the time.
I've implemented it with a ...
1
vote
2answers
28 views
Android ListView does not Highlight when a OnClickListener is set
I have a ListView populated with custom XML ListItems, this is the XML:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
2answers
29 views
UI thread and Surfaceview
I am very new on android. I saw in the android developer website two rules about android threading :
1 : Do not block the UI thread
2 : Do not access the Android UI toolkit from outside the UI ...
0
votes
1answer
21 views
Zxing: how to update the UI(result view) after handleDecodeInternally() function
As an interest, i am studying the Zxing android related routine, now one question block me for several hours, it is: How does CaptureActivity update the UI(result view) after handler the decoded ...
0
votes
2answers
32 views
Android cannot re-size LinearLayout
I've been working on an android application recently, and in the last day or so I've been working on the GUI using the eclipse layout editor. Unfortunately, I can't resize my linearlayout in any way ...
0
votes
1answer
27 views
How to set the Z order of multiple SurfaceViews
I have a SurfaceView as a live preview of the camera, a GLSurfaceView to draw some OpenGL objects and a last SurfaceView to show some GUI elements. I'm trying to put the GLSurfaceView over the ...
-1
votes
1answer
34 views
how to run back-end (Non-Stop process) process without affect the Ui Thread in Andrioid
My problem is :
I am trying to run a continues non-stop process from the time of activity created to destroyed. if i do it the UI Thread stop the execution / unable to access any ui in ...
6
votes
2answers
120 views
+50
Detect 'home button pressed' event in android service displaying a UI (similar to facebook chatheads)
In facebook chatheads, that are part of the facebook messenger app, I noticed the following behavior:
As far as I can see, the chat head itself and the opened chat screen are all parts of a service. ...
0
votes
2answers
40 views
Android app crashes when inflating new view element
Expected Result:
Android version = 2.2
Programmatically add a RelativeLayout to LinearLayout in main_menu.xml using inflate(). The linear layout (ID is item_list in main_menu.xml) is a container ...