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
0 answers

Playstore reported crashes that are not linking to app codebase (ssize_t BitTube::recvObjects)

I am getting this error on playstore but not on Appcenter crashes. I am unable to find the root cause of this issue. Please provide any leads on this.It looks like a crash in Bittube cpp file in android framework…
Manish Patiyal
  • 4,427
  • 5
  • 21
  • 35
0
votes
0 answers

User screen journey for Operating System

I want to create a tree for all the screens a user can come across from a home screen (as parent node) and all the subsequent children nodes. I want to store the tree with the screenshot of all the screen. I am currently trying to use appium but it…
swapnilindahood
  • 107
  • 2
  • 9
0
votes
1 answer

Is it possible to remove the frame of an Android custom dialog?

Any ideas if there's a way to remove the frame of a custom made dialog? If no, what would be the best way to show a content of an XML over the current activity? Thanks! :)
Roger
  • 6,443
  • 20
  • 61
  • 88
0
votes
1 answer

Display a list in a gui - java/Android Studio

My goal is to display a list where each element (iteration) is displayed with two buttons: The buttons would change a variable in the specific element of the list. My problem: How do I create this gui in Android Studio?
formum
  • 21
  • 5
0
votes
1 answer

Magnifier like feature inside popup window....how to?

I need to create a magnifier like feature in my app. Like the "loupe" effect on the iphone ! The problem is that I need to do that inside a popup window and I don't get how to make it work ! The popup window display a grid of colors that I generate…
oberthelot
  • 1,310
  • 1
  • 11
  • 23
0
votes
1 answer

Purpose of isChecked()

I was doing the Android Developer Fundamentals Course when I had the following doubt in the below code. public void onRadioButtonClicked(View view) { // Is the button now checked? boolean checked = ((RadioButton) view).isChecked(); …
lordzeus1989
  • 55
  • 1
  • 7
0
votes
0 answers

Views are truncated when trying to add them at the same row using ConstraintLayout

I'm trying to create my own multi button "custom view" that get it's attributes from an xml file. When trying to create a custom view with more than 3 button, some button are truncated (please see screenshot attached). Maybe someone encounter an…
DorVak
  • 297
  • 2
  • 9
0
votes
3 answers

Android: Renaming gui elements vs. new layout

I'm new into android and i'm dealing with the following problem. I need to create a button which groups another two buttons of similar features (sort of submenu). So let's say we have a button called "search", by clicking on it the search button…
0
votes
2 answers

Unable to create/update GUI from class other then MainActivity class

i am making a image downloading android app that takes a certain number of image urls, creates GUI for required for the number of urls provided and then displays them. I succeeded in doing so. Now i am trying to separate a module of this task. In…
0
votes
4 answers

How to place two views inside a layout in the exact same position and size ratio?

I want to place those two parts inside a layout to form a loading bar. and The orange indicator needs to be inside the wood board, But I can't find a way to connect them in a proper way... The final results should look like this . XML…
user5728398
0
votes
3 answers

Is SharedPreferences a safe way of sharing settings between a service and the UI?

Is SharedPreferences a safe way of sharing settings between a service and the UI? I am calling commit() in a service and when I read the prefs in the UI 300ms later, the data is not there. This is on API 27. I already use the Messenger for…
Vadim Peretokin
  • 2,221
  • 3
  • 29
  • 40
0
votes
1 answer

How to do GUI stuff in background? (Android)

I tried to do gui stuff with asynctask, but it not works on every device. Why? Here is my code: public class DownloadWebPageTask extends AsyncTask { long difference; ReadEvent readevent; @Override protected…
ubik
  • 95
  • 2
  • 10
0
votes
0 answers

Android RelativeLayout fix imagebutton width

I have an imagebutton and I'd like to reduce the image size to match the control next to it. I've already achieved this, but the imagebutton is now wider than the image. How can I fix this? See attached image.
Marcel
  • 917
  • 3
  • 19
  • 48
0
votes
0 answers

How to resolve a scale table with different screen sizes?

I want to set the table with small devices, please see this image to know my problem. If you know the code to freeze the size of each row or modify the XML file, please tell me. My XML:
0
votes
1 answer

Best practices and conventions in Android XML and .java files

I am java programmer and I try to follow coding conventions and best practices. But these days I am learning Android,but some times its very confusing giving name to component/s in XMl and using them into java files.Because we also need to hold XMl…
Mehraj Malik
  • 14,872
  • 15
  • 58
  • 85