Questions tagged [android-gui]

The system through which people interact with a computer. UI stands for User Interface

There's now a Stack Exchange site for UI, Interaction and User Experience design: [ux.stackexchange.com][2]

Similar tags:

116 questions
0
votes
1 answer

Options for endlessly repeating function GUI calls while remaining responsive

I've got an animation to perform which consists of some arrow heads aligned horizontally where the alpha values of the arrows will change to achieve an animation effect (i.e. first arrow has alpha 1.0, then the second will get a value 1.0 etc.). So…
Gruntcakes
  • 37,738
  • 44
  • 184
  • 378
0
votes
0 answers

android app dev screen size support

I've read Android Multiple Screen Support and watch youtube tutorials regarding supporting different sizes of screen resolutions for android app. What they commonly do is to create multiple drawable-xxxxx folders and layout-xxxxx folders and…
meepawned
  • 15
  • 5
0
votes
1 answer

How to upscale and render remote(RGB565) frame buffer on Android native?

I have ported remote frame buffer receive C code on Android 4.2.2 which receives frame buffer from host in RGB565 format. Able to render the received framebuffer following the standard android example…
0
votes
2 answers

how to manage the spaces between buttons in android

i'm trying to make a dial pad in android with circle buttons.Just like in IOS 7.This is the link where you can see the dial pad in IOS…
user3835770
  • 31
  • 12
0
votes
3 answers

relative layout not fitting the entire screen

the green coloured background is the relative layout under device, its not fitting the entire screen (there is a white space in between )even though i have made the layout to be fill_parent or match_parent. here is the xml code of my app …
0
votes
1 answer

how to create a group of buttons in android?

I want to create a button as given below. Two circles and four buttons are enough. I couldn't find an exact method to do it. So I am trying to create a custom button using masking. I could create two circle and I set it when middle area(green…
IDF
  • 93
  • 1
  • 9
0
votes
1 answer

Shadow below a Region

How to implement the below functionality of Gmail app for Android. Initially the area below the text 'Mon, May 19..' does not have any shadow below it. But when the email content is scrolled up, a shadow appears below 'Mon, May 19..' as seen in the…
Code_Yoga
  • 2,968
  • 6
  • 30
  • 49
0
votes
0 answers

Views alignedToBottom in RelativeLayout are appearing strange on Eclipse, not on a device

I guess there are hundreds of small (and big) bugs regarding Android GUI..but this one really grinds my gears ! When I have a RelativeLayout, and I put some button on the bottom of the layout and set it's margins to 30dp, for example. I cannot see…
SteBra
  • 4,188
  • 6
  • 37
  • 68
0
votes
2 answers

Cast Class object to EditText in Android?

public void changeCurrency(RelativeLayout layout) { for (int i = 0; i < layout.getChildCount(); i++) { View v = layout.getChildAt(i); Class c = v.getClass(); if (c == EditText.class) { // validate EditClass …
Chris G
  • 449
  • 1
  • 5
  • 19
0
votes
1 answer

Apache Felix bundle with Android GUI

How can I create an OSGi bundle which I can inject in an Apache Felix container running on an Android devices which opens a GUI? I am not interested in the details about converting a normal bundle to an Android bundle [1]. It's more like this…
Jack Miller
  • 6,843
  • 3
  • 48
  • 66
0
votes
1 answer

Android, surfacView to stretch entire width & desired height of screen , and unable to place TextView on surfaceView

I want my layout to display surfaceView that covers all the screen width, also displays a TextView on top of the surfaceView, and another horizontal layout below the SurfaceView. Below is the snapshot of my Eclipse android GUI designer: Below is…
cyber101
  • 2,822
  • 14
  • 50
  • 93
0
votes
1 answer

how to use colorpicker with my application?

I have made a simple android drawing application,In that i have taken different buttons for different colors,Now i want is that when i click on red button my pen color should be chaned to red.same as for diffrent colors..My code is as below,Please…
jigar
  • 1,571
  • 6
  • 23
  • 46
0
votes
5 answers

Top border wont show up

My top border wont show up, its getting put behind the other layout, how can I make it come up? this is the image of what i need since i cant post images yet http://tinypic.com/r/33nhk4k/5
Jordin Youssef
  • 1,147
  • 2
  • 7
  • 4
0
votes
1 answer

Android custom gui-components?

Im searching for an android gui-library with more components i could use in my app. Example: A microcontroller sends the rpm of a motor (via bluetooth) to my smartphone. And i want to use my smartphone in order to show the received rpm in…
0
votes
1 answer

Getting rid of the black screen

This question has probably been asked a lot many times.. Yes! I am facing the so called "black screen problem".. My first activity is which the main activity, in which login is done, and this activity is followed by the next one which is a simple…
Amruta
  • 63
  • 6