Android Dev - App Feedback Thread - April 04, 2020 |
- App Feedback Thread - April 04, 2020
- Kotlin Resources for Beginners
- Removing app from Amazon app store
- Jetpack ViewModel initialization
- Any way of tagging a string value?
- Open Source Food Delivery and Hyperlocal Shopping app
- Modifying the default View touch/click behaviour - is there anything wrong with this tweak?
- Passing data ownership to your app’s customers
- Confused by In-App-Purchase Data Provided by Google (gross/net)
- Internal Test app still pending Publication even after 6 days.
- Android Studio 4.0 - Translate Editor not work
- What Transitions/Animations do you use for your app?
- Is app-ads.txt obligatory?
- Database to ListView?
- Does income really depend that much on the logic of ad display and network performance? Check out the ultimate guide on essential in-app advertising metrics.
- Building Basic UI
- Is there a way to store the created arraylist in memery so it doesnt create every time app starts?
- Emulator 30.0.7 Canary
- Why don't Google hide Activity from developer, and only have AppCompatActivity?
- Need help understanding this and implementing
- Where can I find vector art for my apps?
- How fast does my internet need to be to use the Gradle Remote Build Cache? (Part 1)
| App Feedback Thread - April 04, 2020 Posted: 04 Apr 2020 05:28 AM PDT 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. - Da Mods [link] [comments] | ||
| Kotlin Resources for Beginners Posted: 04 Apr 2020 04:03 AM PDT I have basic programming knowledge. I was trying out learning Java but it seems Kotlin is more geared towards android development. I cant find beginner resources for Kotlin. Please do recommend. [link] [comments] | ||
| Removing app from Amazon app store Posted: 03 Apr 2020 06:26 PM PDT Hi, A few months ago I submitted an app to the Amazon app store. It is a paid app and has only had one download in that time. I would like to delete the listing and only focus on the Google Play Store for Android as it's not worth continually updating the Amazon listing whenever I change something when there is only one user. My question is, if I remove the app from the store using the 'Remove from Appstore' button, what happens for the one user that has purchased the app? I can't tell from Amazon's reporting if the user has updated to the latest version. Will they still be able to update to the latest version even when it has been de-listed? Will they be able to re-download the app later if they remove it or switch devices, seeing as how they have already purchased it? Thanks! [link] [comments] | ||
| Jetpack ViewModel initialization Posted: 04 Apr 2020 03:50 AM PDT
| ||
| Any way of tagging a string value? Posted: 04 Apr 2020 08:26 AM PDT Like when you choose a Movie, the names of actors, director, year etc can be also shown as 'tags ' and other movies related with these tags can be selected. Oh! and is there a better way to store text other than xml String/S arrays? Complete beginner here. Stay safe. [link] [comments] | ||
| Open Source Food Delivery and Hyperlocal Shopping app Posted: 04 Apr 2020 08:16 AM PDT
| ||
| Modifying the default View touch/click behaviour - is there anything wrong with this tweak? Posted: 03 Apr 2020 08:50 PM PDT For a long time during the development of my app I've noticed a perceptible bit of input lag in the ripple animation that occurs when a View is touched or pressed. As I fiddled around with it yesterday, I decided to investigate. I found these comments/code in the OnTouchEvent method of the default View class: So essentially, if the view you're clicking is inside a scrolling container, the ripple is delayed by exactly 100ms (ViewConfiguration.getTapTimeout()). To me this delay was ruining the effect of the ripple entirely in my Recycler and Scroll views, and meant that even long presses or press and slides (where you slide your finger off a view to avoid triggering a click) had a perceptible "touch latency". The 'fix' was very simple: override the 'shouldDelayChildPressedState()' method in your scroll containers to return false always, like so: This method is very tightly constrained to the pressed state behaviour, so no scrolling or other touch behaviour is affected. The result in my opinion is much nicer, views feel more interactive and the ripple feels more connected to the touch. The only negative outcome is that when you start a scroll, you can trigger a ripple on the view your finger started scrolling from. It doesn't bother me though, it feels like the screen is just registering your input like a hover state in CSS. I'm not sure whether I'm sharing this because it's interesting or whether I'm asking if this is fine to change, but I feel strange modifying such a low level behaviour. I think the changed behaviour is much nicer - is that all the justification I need? Edit: also worth noting that for whatever reason, Coordinator and Frame Layouts also delay pressed states, so views inside them have the 100ms delay. [link] [comments] | ||
| Passing data ownership to your app’s customers Posted: 04 Apr 2020 05:53 AM PDT | ||
| Confused by In-App-Purchase Data Provided by Google (gross/net) Posted: 04 Apr 2020 03:55 AM PDT Hey guys, I am a app publisher and I'm very confused by the In-App-Purchase data (Both In-App-Purchases and Subscriptions) provided by Google. Sometimes they provide gross (revenue without taxes and Google Play cut) and sometimes net (What I receive on my bank account). So far I have several data views: -Acquisition reports in Google Play Developer console (net revenue, also ARPU KPI is net revenue but only calculates IAP?) -Analytics in Firebase Dashboard (gross revenue, however Admob is net) -Revenue Chart in Google Play Developer console Android app (gross revenue) -Financial Reports - Revenue in Google Play Developer console (gross revenue) -Google Play Developer Console - Payment Settings Shows net revenue Guys I'm a bit confused, Google seems to mix data as they like, however I need this data to make my strategic decisions on Marketing spent. [link] [comments] | ||
| Internal Test app still pending Publication even after 6 days. Posted: 04 Apr 2020 03:54 AM PDT I uploaded and internal test version of my app to the Internal Test Track on 30th March and today 6th April it is Still Pending Publication. Is anyone else facing the same problem. I have to test a lot of things before I resume app development and for the past 6 days I have just been sitting idle waiting for my test app to get published. Is this normal [link] [comments] | ||
| Android Studio 4.0 - Translate Editor not work Posted: 04 Apr 2020 02:14 AM PDT
| ||
| What Transitions/Animations do you use for your app? Posted: 03 Apr 2020 10:10 AM PDT As all of us want the app to be more stylish with a perfect UI if that would be possible, I want to have an open discussion what animations or transitions do you use and you think are really nice for the UI? It doesn't matter, if it's for your textviews, buttons, fragments etc. just say what you liked and you'll be using next time. [link] [comments] | ||
| Posted: 04 Apr 2020 01:07 AM PDT
| ||
| Posted: 04 Apr 2020 12:47 AM PDT What's the best current solution to show (for example) the keys of a db's entities in a ListView? Should I use SimpleCursorAdapter? [link] [comments] | ||
| Posted: 04 Apr 2020 04:00 AM PDT
| ||
| Posted: 03 Apr 2020 12:22 PM PDT
| ||
| Is there a way to store the created arraylist in memery so it doesnt create every time app starts? Posted: 04 Apr 2020 12:28 AM PDT
| ||
| Posted: 03 Apr 2020 09:38 AM PDT | ||
| Why don't Google hide Activity from developer, and only have AppCompatActivity? Posted: 03 Apr 2020 07:17 PM PDT Based on https://stackoverflow.com/a/38840468/3286489, per my understanding, AppCompatActivity is the way to go moving forward due to it ensuring compatibility. And Google like to promote Material Design. Just curious, why Google still retain Activity? Why don't hide it from developer, and make only AppCompatActivity available to access? [link] [comments] | ||
| Need help understanding this and implementing Posted: 03 Apr 2020 07:13 PM PDT I don't have the option he selects and I cannot figure out for the life of me how to animate my objects. Is his method out of date or what am I not understanding [link] [comments] | ||
| Where can I find vector art for my apps? Posted: 03 Apr 2020 06:44 PM PDT I like my UIs to be simple and clean, I want to add "art" to my app, for instance, show an image when there are no data to be shown. I came across this post on StackOverflow, this type of images is what I am aiming for, is there a website where I can get art images or hire someone to draw them for me? [link] [comments] | ||
| Posted: 04 Apr 2020 01:53 AM PDT
| ||
| How fast does my internet need to be to use the Gradle Remote Build Cache? (Part 1) Posted: 03 Apr 2020 05:02 PM PDT
|
| 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