In an Android application, the user interface is built using `View` and `ViewGroup` objects. There are many types of views and view groups, each of which is a descendant of the View class. For more information please visit:http://developer.android.com/guide/topics/ui/index.html

learn more… | top users | synonyms

4
votes
2answers
30 views

Greeting Card Flip-View Animation

I'm working on greeting card application and i need card flip-view type of View. i've added images for same. I've been through multiple flip-view like libraries and i found android-flipview more ...
0
votes
2answers
27 views

Jerk in UI with notification bar

In my application I have two Activities A and B. In Activity A, i disable the notification bar in manifest but in Activity B notification bar is enabled. While navigating from Activity A to Activity ...
0
votes
1answer
36 views

how do i create stackable images in android?

I have a requirement where i have to rotate the image and stack 3 images on top of each other . <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
-2
votes
0answers
10 views

View like Quick Action View in android [closed]

How to implement this, can anyone provide me the solution or suggest a way how to do it?
2
votes
1answer
115 views

Metro UI on an Android App

I am currently developing an app where my user interface would be similar to that of the METRO UI of windows app but not very similar. I made a relative layout where the "windows" would be places. ...
0
votes
2answers
54 views

Android Trading Card Game card objects

I'm writing the GUI for an Android app that plays a trading card game. I have code for a battlefield layout using several views. I need to make an object that represents the deck, and also an object ...
0
votes
0answers
22 views

Android - How I can listen edge effect on ListView (like pull to refresh) ?

I want to use pure-Android patterns to build my UI. Therefore, i prefer to use Edge Effect instead Pull-to-Refresh (seems near of IOS UI patterns). I already search/read this answer at Android docs, ...
2
votes
2answers
54 views

Add a button to View

I'm drawing a graph then add some button/label/textbox for input data. But the button on main layout is't show up. how to add button to a View (Because i draw graph using canvas on a View) here is ...
0
votes
1answer
41 views

Android: Usage of Roboto Light on different screens

I use the Roboto Light font in a TextView with a TextSize of 14dip. This font is very thin so that why I wonder: Is Roboto Light save to use on all screens (ldpi, mdpi, hdpi, tvdpi, xhdpi etc. etc.) ...
0
votes
4answers
37 views

Layout Swipping in Android with fixed button, How to?

I am having great trouble to implement layout swipping UI. Here I show you how each layout works. My first Layout My second layout My third Layout How it works: A user can move one page to ...
0
votes
1answer
24 views

android dynamic generate edittext and use its values

My app. has a button which if it's presses a 2 editText fields apear , and if it's pressed again 2 other editText fields apear and so on. I want to save all the data in this fields in arrayList (or ...
-6
votes
0answers
33 views

Android image and audio effects [closed]

Hi I am a newbie I have some questions 1) I have to make a camera application in which after capturing an image I can apply visual effects like (android camera). 2) I have to make an audio recorder ...
0
votes
1answer
37 views

Android align button and text in a table layout

I am trying to create a table view with a text view and a button in android. Below is my sample code ( work in progress ). As I am very new to android please help me how to arrange the text view and ...
-1
votes
4answers
53 views

Transparent linear layout on Android

I have the folowing layout: I want to make transparent the transparent_layout but i can't do it. Already tried settings the background programmatically with the color: Color.TRANSPARENT but it ...
0
votes
0answers
64 views

Android: Alternative to (deprecated) Sliding Drawer functionality

Requirement: I have several text fields (that contain calculated map distances) that are "overlayed" on top of a Google Map (v2). I would like to provide the capability for a user to temporarily hide ...
0
votes
0answers
21 views

View inside a Fragment isn't destroyable

i have a problem with the android Fragment class. I already implemented a FragmentStatePagerAdapter etc. Now my problem is the following: I added my own View-class to each "LSDataFragment": @Override ...
1
vote
0answers
29 views

View inside a Fragment isn't destroyable?

i have a problem with the android Fragment class. I already implemented a FragmentStatePagerAdapter etc. Now my problem is the following: I added my own View-class to each "LSDataFragment": @Override ...
0
votes
1answer
45 views

Layout positioning is changing in nexus

I have designed a layout with respect to xhdpi specifications. its working fine in all xhdpi devices. But the layout positioning changes in nexus due to its navigation bar which comes on screen. How ...
0
votes
0answers
14 views

Fading ListView when keyboard is shown

In the Gtalk application, when the user taps on the EditText field and the keyboard slides up, it appears as if the ListView holding the chat transcript fades out and when the soft keyboard is fully ...
0
votes
3answers
71 views

How can I set a shadow in each cell of a ListView?

I have a custom cell for an Android ListView. This custom cell is a relative layout with some views inside. There is a space between each cell, so I want to add to the bottom of the cells a shadow. ...
-1
votes
0answers
40 views

How to achieve the special navigation bar at the top of the picture [closed]

I want to know how to achieve the special navigation bar in the top of the picture in android app.Unlike some news apps,the navigation bar use a beautiful arrow of a line to achieve the effect. The ...
1
vote
2answers
58 views

Animation not starting until UI updates or touch event

I have a strange problem with an AlphaAnimation. It is supposed to run repeatedly when an AsyncTask handler is called. However, the first time the handler is called in the Activity, the animation ...
1
vote
1answer
37 views

Android context menu customization

can anyone tell me if context menu can be customized (or altered) in such a way to use different item style (assuming that items are of same class)? I.e. one item has a black text color, other yellow, ...
-6
votes
3answers
80 views

update Main UI Thread or AsyncTask never allowed than where can i update UI thread? [duplicate]

Caused by: android.os.NetworkOnMainThreadException 04-25 13:15:52.362: E/AndroidRuntime(20900): at android.os.StrictMode$AndroidBlockGuardPolicy.onNetwork(StrictMode.java:1117) 04-25 ...
0
votes
2answers
100 views

How to change border color of radio button in android?

How to change border color of radio button in android? I want to change circle color of android radio button. Thanks in advance. Any help is greatly appreciated. I have try different soluation and ...
0
votes
0answers
94 views

How to change TabWidget's background color from XML in Android

I have come across this problem. I have a tab widget on top of the view, with four tabs in it. I have been asked to change the background color of the whole tab view area. Not for any tab, but the ...
0
votes
1answer
129 views

Circle UI like Google Plus for Android App

In my Android application, I loaded all contacts and every contact will be categorize by user such as family, friends and co-workers for sharing my app. Now after sharing I want to show invited user ...
0
votes
1answer
42 views

EditText content size vs layout size

I have a singleline EditText, and I am interested in the size of the content vs the size of the EditText, to see if the content fits the size of the EditText or not. How can I do this? Thanks
0
votes
1answer
34 views

Setting EditText value causes remeasure and layout of UI

I have a fairly complicated UI - lots of views and quite a bit of hierarchy. I'm working on paring this down, but I've noticed something really strange. The UI is updated from a backing Model; ...
1
vote
4answers
68 views

Creating custom back button in android

EDIT: I HAVE TO PUT A BACK BUTTON IN MY APPLICATION SO I CANNOT USE THE EXISTING ONE IN THE ACTIONBAR I have an application that has a menu and depending on what button you press in the menu a new ...
0
votes
1answer
80 views

android listview with item and sub item not working properly

I have a database which i select 2 strings one as an item other one is description.I am trying to map these 2 strings into a listview item-subitem layout. the following code is what i tried so far. ...
0
votes
1answer
100 views

Android image slider like Ios

How can I make an android image slider that contains two parts. One part is an horizotal image slider (thumnail), the second part is an original image of the selected image. This look like ios ...
1
vote
2answers
62 views

When to use res/xml vs.res/layout folders in Android

I am creating preferences for my app and noticed some examples store the XML in res/layout and other store them in res/xml. Is there a reason or best practice to store them in one vs. the other ? I ...
0
votes
0answers
50 views

How do I implement this appwidget layout correctly so that the image scales as expected on all devices?

Pretty simple App widget layout below that I am looking at as an end result that should display exactly the same way on all devices irrespective of size,density etc. Here is what I have done. ...
1
vote
1answer
90 views

ListView appearing only when attaching HierarchyViewer

I have a ListView with a custom Adapter that extends CursorAdapter. The list is defined in such a layout: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
1answer
147 views

Designing Android UI and Implementation Using Fireworks

I want to learn designing android UI and implementation to android apps. I found one video tutorial on the web but It seems only how to design. I don't know how to use it on apps. Video Tutorial How ...
0
votes
1answer
29 views

Keeping UI up to date with service

I've implemented a IntentService that fetchs data from my servers and returns result as JSON through ResultReceiver that's given to the service via intent. My problem is keeping UI up to date with ...
1
vote
3answers
54 views

The identifier of Android UI thread

When I write codes on Android platform,I often must be careful about the UI operation,which can only be done in UI Thread,I know it clearly,and I know why GUI use single thread to operate UI widget,in ...
0
votes
1answer
76 views

Optimize the alertDialog layout?

I would like to create the following layout that is suitable for every type of tablets .I know we could set different setting by placing them in drawable and editing them however is there an ...
0
votes
0answers
36 views

Android UI design. Designer and result are quiet different

Why do this happen? The emulator is xhdpi, and the designer i xhdpi. What elegant solutions is there to fix something like this? I suppose i could drag each element in the designer to a spot where it ...
0
votes
1answer
53 views

How do you change widths of columns in Android XML?

I have searched this and have not been able to find an answer that works for me. I currently have 2 columns on my 5th tab. I would like to make the 1st column 40% and the 2nd column 60% in width. I ...
0
votes
2answers
83 views

How to keep actionbar fixed across all activities?

In the Facebook app v2.3, when you navigate from one activity(or frgament?) to another, the actionbar stays fixed across all activities(or fragments?). For example, If you navigate from you news feed ...
0
votes
1answer
31 views

How should I display a constant notification in Android?

I need to notify the user of my app if the app is connected to the server. If it is, show an online icon, text, etc. somewhere in the app. What is the suggested UI guidelines for this type of ...
0
votes
0answers
59 views

problems with invalidateOptionsMenu()

I have a menu bar in an activity with an option that is not visible by default. When a new message arrives the option appears by calling invalidateOptionsMenu() to refresh the menu bar. ...
1
vote
1answer
105 views

Create shadow for dialog

I want to create a shadow for my custom dialog is that possible ? GhazalActivity.public void viewShareMenu() { Dialog share=new Dialog(this,R.style.shareDialogStyle); ...
1
vote
0answers
26 views

OnTouchListener for a view in Jelly Bean

I have a game Activity, which contains a SurfaceView that fills the whole screen. The app is declared as fullscreen, and appears as such. My SurfaceView has an OnTouchListener, which feeds a ...
0
votes
0answers
80 views

receiving an image from tcp server on android device

i have an image that am sending from a java tcp server to android device. the only problem is that i have is for the image to be received on the android i have to close the socket. is there anyway of ...
3
votes
0answers
48 views

How can I modify the Android Gesture visuals (for on screen gesture detection)?

Essentially what I'm trying to do is use this gesture functionality as demonstrated below https://www.youtube.com/watch?v=tG3lzBDMRQQ http://www.vogella.com/articles/AndroidGestures/article.html ...
2
votes
1answer
134 views

android update imageview from outside UI thread

I'm trying to listen for a connection that sends a picture to my android then set this image to an image view. the process should be done automatically to simulate a push content behavior. this ...
0
votes
1answer
62 views

java server push image on android device

I am trying to make a java tcp server that will send an image to all connected android devices. Then the devices should set this image as background. i know how to send an image from java server to ...

1 2 3 4 5 15