Android Dev - App Feedback Thread - November 12, 2021 |
- App Feedback Thread - November 12, 2021
- Tell your silly mistake
- No javadoc attached to the android api
- Which cloud service would you use for storing chart data (open, close, high, low price)?
- The state of managing state (with Compose)
- doubt about using in-app updates
- Anyone see Resolve Conflicts in AS Artic Fox? (2020.3.1 Patch 3)
- Is this diagram of Fragment and Activity lifecycles correct and up to date?
- View limit whilst making Sudoku game
- Looking for a virus like memz but for android.
- JVM heap space is exhausted (running out of JVM memory)
- Getting back into Android development after 3 years
- How much time does it take to learn and implement database framework (room or something) in my app?
- More Material3 and Material You work with Mike Wolfson (@mikewolfson) #themingIsHard
- Do you check your app's images for copyright in search engines?
- Perform action with all checkboxes on one screen
- Stable Hilt is broken, Alpha Hilt isn't
- Consuming TS logic in Kotlin
App Feedback Thread - November 12, 2021 Posted: 12 Nov 2021 06:00 AM PST This thread is for getting feedback on your own apps. Developers:
Commenters:
To cut down on spam, accounts who are too young or do not have enough karma to post will be removed. Please make an effort to contribute to the community before asking for feedback. As always, the mod team is only a small group of people, and we rely on the readers to help us maintain this subreddit. Please report any rule breakers. Thank you. [link] [comments] | ||
Posted: 12 Nov 2021 01:04 AM PST Hi everyone. I know, everyone here made sily mistake in your work. I would like to share one of mine, because from mistake only we learn. Ok, I was debugging someones code in Android Studio. For some reason, I want to print log, but could now do so. I try to change value or hard code value from code , but couldn't do it. But I was able to hard code in respective XML File. This made me crazy and doubt my 2 year of experience in Android. I also doubt my system Android Studio build configuration. Then I started from code root, ie from manifest to each activity and fragment in app flow, and found out that. "Same XML is being used in two different fragment house work also similar with situation of use is different". So could get log or any changes made in one fragment file not being reflected on screen , which using different fragment file at that situation. Learning point: 1) One XML can be used more then one activity/fragment. 2) if your log not printing on your console, bcz that activity/fragment is not being used on screan. 3) don't doubt system build confidence or your self. [link] [comments] | ||
No javadoc attached to the android api Posted: 12 Nov 2021 11:17 AM PST I've searched everywhere. Nothing have worked! I've two folders downloaded, the Javadoc and the Android API but I don't know how to attach them together in eclipse? [link] [comments] | ||
Which cloud service would you use for storing chart data (open, close, high, low price)? Posted: 12 Nov 2021 10:50 AM PST So I'd build a script that pushes price data (that I got from a 3rd party provider) to a cloud storage in every 5 mins and the android app gets data of historical prices of these digital goods from the cloud. How would you manage to build this (preferably the most cost-efficient way)? How would you store the data? Hope you understood what I wanna do, I'm from phone and don't want to type more [link] [comments] | ||
The state of managing state (with Compose) Posted: 11 Nov 2021 09:40 AM PST | ||
doubt about using in-app updates Posted: 12 Nov 2021 09:33 AM PST We would like to add in-app updates to one or our apps. It would prevent problems with users continuing to use an old version when we change integrated server connections or other fundamental changes. And it can avoid complaints from users because they are using an old version. It can also force users who have downloaded the app outside of the Google Play Store to receive the update through the Google Play Store. So we would like to use the flexible update mechanism and after some time (eg 30 days after the update is published) the immediate update mechanism. But we're not sure how users will experience this. The app receives on average one update per month. Questions: if you have experience with flexible and immediate in-app updates in your app(s), how do users respond? Are there any good practices to keep in mind? [link] [comments] | ||
Anyone see Resolve Conflicts in AS Artic Fox? (2020.3.1 Patch 3) Posted: 12 Nov 2021 08:30 AM PST I cant find the "Resolve Conflicts" option. It used to be in Tools -> VCS -> Resolve Conflicts Not sure where it is now [link] [comments] | ||
Is this diagram of Fragment and Activity lifecycles correct and up to date? Posted: 11 Nov 2021 10:25 AM PST
| ||
View limit whilst making Sudoku game Posted: 11 Nov 2021 06:12 PM PST As a learning experience I'm making a Sudoku game. The problem I'm having is too many views. Performance is impacted, including frames being skipped in debugging. As you probably know, Sudoku is a 3x3 grid, with each of those also broken in 3x3. 81 squares. Each with their own number, so a text view each. The warning kicks in after 80 views, and that's just the main numbers. Many Sudoku apps then allows for pencil marks. There are notes/hints about the possible numbers (1..9) in each of the 81 squares. If each pencil mark has its own Textview (and some look like they do as individual pencilmarks are bold eg the 1 is bold, the 2 is not)... that's ANOTHER 729 Textviews... How on earth is possible to have so many Textviews? I assume it's not. So how should I go about? I have considered using a single textview per row, and using monospace fonts to control the eventual position. But that seems such a fudge. eg 1200001030007----- 81 chars long. 0s would be spaces. [link] [comments] | ||
Looking for a virus like memz but for android. Posted: 12 Nov 2021 10:54 AM PST | ||
JVM heap space is exhausted (running out of JVM memory) Posted: 12 Nov 2021 02:28 AM PST
| ||
Getting back into Android development after 3 years Posted: 12 Nov 2021 02:00 AM PST I started Android development in 2010 but slowly switched over to iOS in 2015 and didn't do any Android stuff since 2018. I would like to get back into Android development, but I am a little bit overwhelmed by all the changes in the Android world. What do you think is the best ways to get up to date? Do you know any open source projects which make it easy to understand the current trends in Android development? I already started learning Kotlin and trying to find out more about all that Andoird Jetpack stuff. But other than that, I currently don't really know how to start researching. [link] [comments] | ||
How much time does it take to learn and implement database framework (room or something) in my app? Posted: 11 Nov 2021 11:45 PM PST So, basically, i wrote an app, and now i am optimizing it for different screen sizes and refactoring my code (a tidious work i might say). However i would like to save some resources on a server (strings), and data, generated in process of user input (int, float), on device. Which framework (or frameworks) i should use to fullfill this goal? How much time did it take from you to learn and implement this stuff? Currently i am looking for the asap solution, cos i am unemployed and in difficult financial sutiation, however i would like to hear both the fastest and the best practices. [link] [comments] | ||
More Material3 and Material You work with Mike Wolfson (@mikewolfson) #themingIsHard Posted: 11 Nov 2021 11:25 AM PST
| ||
Do you check your app's images for copyright in search engines? Posted: 11 Nov 2021 10:31 AM PST
| ||
Perform action with all checkboxes on one screen Posted: 11 Nov 2021 12:45 PM PST Hi All, I have many checkboxes on my third screen, currently I perform the follow on each in my methods for selecting all, and unselecting all checkboxes. Each of these is called by a certain button when clicked. How can I reference all of the checkboxes on a certain screen/layout? Any references/articles I should look at? public void unselect(View v) { if (box1.isChecked()) { (repeated for every other checkbox) [link] [comments] | ||
Stable Hilt is broken, Alpha Hilt isn't Posted: 11 Nov 2021 06:51 PM PST
| ||
Posted: 11 Nov 2021 10:44 AM PST Trying to architect my app to write some logic in typescript, and consume that app side. Anyone know of a good library for this? Ideally, something that transpiles TS into Kotlin or java. [link] [comments] |
You are subscribed to email updates from Developing Android Apps. To stop receiving these emails, you may unsubscribe now. | Email delivery powered by Google |
Google, 1600 Amphitheatre Parkway, Mountain View, CA 94043, United States |
No comments:
Post a Comment