• Breaking News

    Saturday, February 20, 2021

    Android Dev - App Feedback Thread - February 20, 2021

    Android Dev - App Feedback Thread - February 20, 2021


    App Feedback Thread - February 20, 2021

    Posted: 20 Feb 2021 06:00 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 a top level comment
    • must make an effort to respond to questions and feedback from commenters
    • app 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.

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

    Let' s talk about launch screens, how do you implement it?

    Posted: 20 Feb 2021 04:01 AM PST

    Swipe to reveal in Jetpack Compose

    Posted: 19 Feb 2021 10:23 AM PST

    Is it possible to get my app's Installation count using an Play console API

    Posted: 20 Feb 2021 06:14 AM PST

    I have seen several play store app analysis tool. I was planning to create a small tool for my me and my team.

    I have explored Developer API but didn't see anything like this.

    Have you guys ever done something like this?

    Do you have any idea how to do it?

    (edit) not An, it should be A in title

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

    the simplest guide to gradle

    Posted: 20 Feb 2021 08:10 AM PST

    Mic in use

    Posted: 20 Feb 2021 02:24 AM PST

    Is there a way to check if the mic is in use?

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

    Are there frameworks for creating social events within an android app?

    Posted: 20 Feb 2021 08:26 AM PST

    As part of an app I'm developing, I want to include functionality to let users create events similar to facebook events. It's been difficult to google since there are a lot of overlapping search terms...

    I don't want to just create a facebook event or google calendar event through my app, I want to create unique events within my app (although I'll look into those APIs in the future). Does anyone know of a framework that can achieve this? I'm using Firebase for user and database hosting currently. Let me know if I should include more info.

    EDIT: Oops, written in java too

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

    How to detect the end of scroll of Carousel in WebView

    Posted: 20 Feb 2021 05:51 AM PST

    Is there any way to detect whether the horizontal carousel in a webview has scrolled to the end?

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

    Will admob work still fine if I changed the package name of an app/game?

    Posted: 20 Feb 2021 01:24 AM PST

    what if you where to change the package name of your app but u already registered it with admob, will the ads still work properly ? Do you still get paid? I would really like to know if you have experience or knowledge this topic.

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

    RecyclerView with ImageButtons - Change image src on button click (add to favourites)

    Posted: 20 Feb 2021 02:01 AM PST

    I have a class Message with properties content and IsFavourite.I am loading a list of this messages into the recyclerView. Each of this Item has some buttons, including Favourites button (true - red heart, false - gray heart) WHen user clicks on this button, I want to change its state and image I already have OnFavouritesClick method in activity, but I dont rly know what to do.. do I have to edit my adapter instead?

    My adapter stuff

    override fun onBindViewHolder(holder: RecyclerViewHolder, position: Int) { ... if (currentItem.isFavourite){ holder.btnFavorites.setImageResource(R.drawable.favourites_yes) } // default is set to gray heart } inner class RecyclerViewHolder(itemView: View): RecyclerView.ViewHolder(itemView), View.OnClickListener { ... val btnFavorites: ImageButton = itemView.findViewById(R.id.button_favourites) ... init { btnFavorites.setOnClickListener(this) } } override fun onClick(v: View) { val position: Int = adapterPosition if (position != RecyclerView.NO_POSITION) { when (v.id){ R.id.button_favourites -> listener.onFavouritesClick(position) } } } interface OnItemClickListener { fun onFavouritesClick (position: Int) } 

    and in my activity I have:

     override fun onFavouritesClick(position: Int) { // Do something } 

    If you need anything else, pls say!

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

    Unit Testing as a 1st-class Citizen

    Posted: 19 Feb 2021 02:07 PM PST

    Database suggestions

    Posted: 19 Feb 2021 08:57 AM PST

    Hey, not sure if this is the right subreddit, but here goes. I am currently in the middle of a project for my final year for a Bachelor's degree, and I want to develop an Android app that will be receiving accelerometer and gyroscope data via Bluetooth from an IoT device that I will also make. My question is , can you guys recommend a good database to send the sensor data from the phone to it? I was thinking of SQLite but I read that it is not very good with fast data speeds... Any suggestions/help is appreciated, thanks

    Edit: by "fast data speeds" I mean that the sensors will probably be working at 30 - 50 Hz

    Edit 2: I have previously worked with MySQL in another Android project, would that be ok for my use case if I went with MySQL again?

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

    ADB Episode 156: Android Runtime Classic (Dalvik)

    Posted: 19 Feb 2021 05:09 PM PST

    Why most of the apps in android place button upper side of the screen ?

    Posted: 19 Feb 2021 05:31 PM PST

    I was using iPhone and swapped to android after 3 years with iPhone. I realized that most of the apps like (browser, gallery apps etc.) placing the buttons i use everytime i open the app to the upper side and it is not easy as someone who has a kinda small hand and big screen phone. You can design a UI that has everything on the buttom and easy to reach and use. I don't think of a reason why this is the way it is right now.

    For example with most of the browser (except Opera and Mozilla) almost every app place the tab button on the top side of the screen i mean why ? I use that every time why cant you think of that and put it soemwhere more reachable ? I saw some apps that completely free bottom side and place everything on top why ? Am i the only one who feels like this or is there a reason ?

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

    Android-Showcase 2021 Q1 Update

    Posted: 19 Feb 2021 10:10 AM PST

    My Android open-source project become quite popular, so I decided to give it a massive update in Q1. On top of many already implemented things here are some newcomers: 👉 Kotlin 1.4.30 👉 Offline cache via Room 👉 View Bindings 👉 Gradle 7.0-milestone-1 (utilizing versions catalog + dependency locking) 👉 JUnit5 👉 Bug fixes and more

    You will find a complete list of features and detailed architecture descriptions inside the repo:

    https://github.com/igorwojda/android-showcase

    Enjoy😄

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

    Compose and IMGUI

    Posted: 19 Feb 2021 11:44 AM PST

    Can Compose UI be classified as IMGUI? Both look similar to me, at least syntactically. Both use functions to define the UI.

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

    No comments:

    Post a Comment