• Breaking News

    Saturday, November 21, 2020

    Android Dev - App Feedback Thread - November 21, 2020

    Android Dev - App Feedback Thread - November 21, 2020


    App Feedback Thread - November 21, 2020

    Posted: 21 Nov 2020 04:28 AM PST

    This thread is for getting feedback on your own apps.

    Developers:

    • must provide feedback for others
    • must include Play Store, GitHub, or BitBucket link
    • must make top level comment
    • must make effort to respond to questions and feedback from commenters
    • may be open or closed source

    Commenters:

    • must give constructive feedback in replies to top level comments
    • must not include links to other apps

    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

    submitted by /u/AutoModerator
    [link] [comments]

    Cleaning up resources in RecyclerView ViewHolder

    Posted: 21 Nov 2020 03:31 AM PST

    Stop generating the BuildConfig on your Android modules

    Posted: 21 Nov 2020 04:06 AM PST

    Wife needed a TodoList and she loves cats so i made her this

    Posted: 20 Nov 2020 04:15 PM PST

    MVVM Adapter Data source

    Posted: 21 Nov 2020 03:54 AM PST

    Hi everyone!

    I think there is no more doubt about where adapter should be in MVVM architecture - it's View layer. But I've faced problem that I need to connect it with data source (mostly ArrayList of items) and the selected ones of them, which are placed in ViewModel. I failed to find some complete solution for that, so I made my own, which I'd love to share with you.

    https://github.com/Ircover/LiveSource - LiveData like solution to place it in your ViewModel. It holds both ArrayList of items and information about which of them are selected.

    https://github.com/Ircover/SelectingAdapter - solution for adapters. It contains BaseSelectingListAdapter class for quick adapter creating, and extension functions to connect adapter with LiveData from previous link.

    And if you are interested, here are articles on Russian about developing it: https://habr.com/ru/post/483552/

    https://habr.com/ru/post/502454/

    https://habr.com/ru/post/526936/

    submitted by /u/Ircover
    [link] [comments]

    AmplifyException - UsernameExistsException (Android)

    Posted: 21 Nov 2020 05:08 AM PST

    This question is mainly about Android Development with Java and AWS (Amazon Web Services) Amplify Auth.

    I have an Amplify.Auth.SignUp method with me which signs up the user and if the user already exists, it throws an error toast at you and logs the error in Logcat.

    Amplify.Auth.Signup code: I have given the code in the Image & Video part.

    If the user is not there in the user pool, I have some code to display. I don't know where to place the code which will get executed if the user is not found in the user pool.

    And, one more thing, how to delete a user from the user pool in java, android? I searched everywhere but there is no Amplify.Auth.DeleteUser method.

    Can someone please help me with this? Thanks in advance.

    submitted by /u/AnikethC
    [link] [comments]

    Recycler views inside a nestedScrollView or inside a RecyclerView?

    Posted: 21 Nov 2020 06:55 AM PST

    Just like the title implies, which one is better? What are the pros and cons of using each one.

    submitted by /u/htmlra
    [link] [comments]

    FirebaseUI for Android v7.1.0 released - ability to set LiveData for FirestorePagingAdapter

    Posted: 21 Nov 2020 01:48 AM PST

    Android App Systems design

    Posted: 21 Nov 2020 04:10 AM PST

    I'm trying to learn how TikTok/Instagram/Snapchat display & show stories in the app. Are there any android system design resources I can read/watch to learn about these things?

    Your help is immensely appreciated

    submitted by /u/fapste
    [link] [comments]

    Help about custom loading animation

    Posted: 21 Nov 2020 08:10 AM PST

    Hello everyone,

    I'm looking to create a custom loading animation, but I can't find what I'm looking for. For the moment I have created something using AnimationDrawable and an xml file that contains all the images to display. The problem is that it's not nice at all since it's jerky and not fluid. I would like something more fluid, do you have any advice ? If so I'll take it.

    Thank you

    submitted by /u/KueyeNL
    [link] [comments]

    Adding a json response programmatically in recycler view

    Posted: 21 Nov 2020 07:52 AM PST

    In receycler view if we populate the json response

    • data1
    • data2
    • data3
    • data4

    But I want to program my list view so that based on the json i have i can also group those data in my view

    Group1:

    • Data 1
    • Data 2

    Group 2:

    • Data 3
    • Data 4

    How do I go about achieving this in my recycler view.

    How can I programmatically add group 1 and group2 text view in my recycler view based on the types of data.

    submitted by /u/Aakash23
    [link] [comments]

    About to finish my first app. While it works, I feel like I've made some bad mistakes during development, would like some advice

    Posted: 21 Nov 2020 04:03 AM PST

    Hi guys. 6 months ago I started working on an Android app and it's now almost done. The app doesn't store any data on the device, and it uses an API for fetching data whenever the user interacts with it. While the main functionality works, I keep having some problems which make me think that I've made bad mistakes during development. For example:

    • I use a bottom menu, and sometimes when I switch between the pages in that menu, the app crashes
    • I use multiple activities based on the screen / functionality that I want to present, and sometimes when I press the back button the app either crashes or keeps going back to previous activities / screens forever
    • I use tab views, and sometimes when I swipe between tabs, their content disappears and I have to close and reopen the screen I was on, to get the content back on it again

    I think the root cause of all these issues is the fact that I implemented a big part of the app based on answers I found on StackOverflow, because I can't find proper tutorials or guides on android best practices.

    Before launch, I'd like to spend some time on refactoring and making sure that I eliminate all the above bugs. Can you recommend books/tutorials/guides that go beyond the "hello world" and "how to display a button" kind of stuff? I'm mostly interested in architecture, how to properly use the components, how to structure the code, how to avoid the kind of issues that I mentioned above and so on. Thank you!

    submitted by /u/s1k3sb
    [link] [comments]

    How to google sign in in a webview?

    Posted: 20 Nov 2020 09:51 PM PST

    I have a website which requires google sign in. I put this url in a webview, the sign in option is available but after I enter my account details, it doesn't move forward and keeps on loading. I've tried to find the solution online, but couldn't find anything relevant. Is this a problem with webview. If yes, is there any alternative?

    submitted by /u/Abhinavch1234
    [link] [comments]

    Can I run android studio emulator on AMD CPUs

    Posted: 21 Nov 2020 01:01 AM PST

    I tried google the question but couldn't find a new and definite answer, some help will be appreciated

    Thanks in advance

    submitted by /u/newuseraccount2
    [link] [comments]

    PAC causes all Google play services to stop working?

    Posted: 20 Nov 2020 10:24 PM PST

    I'm getting this problem that on my Pixel 4a Android 11 RP1A.201105.002. But this repros before that. It seems that all play services and LinkedIn ( somehow this is also affected ) are affected but not most other apps such as Lyft, chrome and firefox. I tested with a simple return 'DIRECT' PAC file and tried to put it in https endpoint but nothing works...

    submitted by /u/BobbyB_1010
    [link] [comments]

    For those who'd love to join the Android development community on discord

    Posted: 21 Nov 2020 12:16 AM PST

    Which is the most important element for app's success?

    Posted: 21 Nov 2020 02:55 AM PST

    What do you think based on your experience on which is the most important element in your opinion to make an app successful?

    View Poll

    submitted by /u/Able-Tradition7460
    [link] [comments]

    Should we choose Kotlin's StateFlow or SharedFlow to substitute for Android's LiveData?

    Posted: 20 Nov 2020 12:36 PM PST

    What is preferred way to learn RxJava in 2020?

    Posted: 20 Nov 2020 12:48 PM PST

    I have a company I am interviewing with who is still using mainly Java/RxJava. While I have been using Kotlin and coroutines for the last few months, I need to backtrack and refresh my memory.

    • Are there any good write ups or videos you guys would point a new Rx developer to?
    • What aspect of rxjava should get the most focus?
    submitted by /u/CutMyLifeIn2Pizzaz
    [link] [comments]

    How to trace Force close Errors ?

    Posted: 20 Nov 2020 09:16 PM PST

    How to trace Force close Errors ?

    So I've been developing an app, the flow is fine (redirection of activities). I'm encountering App FC's after I integrated firebase to it, is there a way to trace it back, checked a few forums which told me to check the logcat but couldn't follow. Also I'm new to Development.

    --Here's the Code--

    https://preview.redd.it/0kj9j99z1j061.png?width=1366&format=png&auto=webp&s=0f13d4da4c4f525ed576d4bbbbea6b0571684a21

    submitted by /u/One-Tie2911
    [link] [comments]

    How to avoid our app getting banned from Google Playstore

    Posted: 20 Nov 2020 07:27 PM PST

    We are keeping uploading an app which uses an unofficial social media API. We use clean Google account and clean credit card.

    And it keeps get banned from Google PlayStore.

    Do you guys have any solution?

    submitted by /u/nuclearpunch90
    [link] [comments]

    First time publishing

    Posted: 20 Nov 2020 11:39 AM PST

    Hi,I am intending to publish my first app soon. Can you advise me on what to do, what to avoid so that an app .can have a "positive"evolution?

    submitted by /u/Calm_Interaction_431
    [link] [comments]

    No comments:

    Post a Comment