• Breaking News

    Saturday, November 14, 2020

    Android Dev - App Feedback Thread - November 14, 2020

    Android Dev - App Feedback Thread - November 14, 2020


    App Feedback Thread - November 14, 2020

    Posted: 14 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]

    How to change the Floating label(Hint) background in material design?

    Posted: 14 Nov 2020 05:57 AM PST

    A pragmatic guide to Hilt with Kotlin

    Posted: 13 Nov 2020 09:12 PM PST

    Any way to flag this review for removal? It's dramatically affecting the rating of my app and is obviously comple unrelated

    Posted: 13 Nov 2020 08:40 AM PST

    Disable Touch

    Posted: 14 Nov 2020 05:26 AM PST

    Hello ! I have launched " Disable Touch" a simple app which allows you to listen to movies or even the online classes when your phone is in your pocket without the worry of accidental touches by disabling the touch using our touch-control-panel .It can be also used over popular apps like YouTube,Amazon Prime Videos and even over Netflix to 'binge-listen' 🤪 movies. Would love to hear what you people think about it !!!

    https://play.google.com/store/apps/details?id=com.tsj.disabletouch

    submitted by /u/freakma-shadow
    [link] [comments]

    Simplified Android development using Simple-Stack

    Posted: 13 Nov 2020 07:34 PM PST

    What changes can I make to my Gallery App?

    Posted: 14 Nov 2020 06:37 AM PST

    I am not great at this, I just used the android studio and Gradle packages. Now the point is the gallery app would take pictures from local memory and display them, I did the design also. Not sure what more I can put into this. It's not even a completed app yet.

    Healthy criticism is nice :)

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

    Unit Testing objects with Android API references

    Posted: 14 Nov 2020 04:54 AM PST

    Android Emulator Error

    Posted: 14 Nov 2020 12:37 AM PST

    This is what I get when trying to start my android emulator. Im using the latest version of Visual Studio

    Device error: WARNING: unexpected '-prop' value ('monodroid.avdname=pixel2_pie_9_0-_api_28'), only 'qemu.' properties are supported WARNING: unexpected '-prop' value ('emu.uuid=4b63b139-cc77-4b66-9200-0d25f8fc545e'), only 'qemu.' properties are supported.

    I have been googling this all day and nothing resolves the issue.. Yes, my system is compatible, I have HAXM installed, everything is up to date, ive followed every step ive found on google and other threads but even those people are still experiencing the issue. Its extremely frustrating as I cannot work on anything.

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

    Do you think Google Map SDK will ever get features available on default Google Map app as a ready to use Fragment or something?

    Posted: 13 Nov 2020 04:50 PM PST

    google map sdk for android has a lot of good things, but it is still lacking far behind in features compared to map app you have on your phone. At the moment people have to roll out these features in their app, which could spell trouble with Google's "No Competing Product" clause ( I wonder how taxi apps like Uber get away with it). Or you can kick of Intent to fire up the map app which is a separate app.

    How do people deal with it?

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

    Playing around with StateFlow/SharedFlow and some meme templates

    Posted: 13 Nov 2020 11:45 AM PST

    How to Disable the Notification/Status Bar??

    Posted: 13 Nov 2020 06:47 PM PST

    I am using miui-ify to have my notification/status bar at the bottom. I managed to hide the notification bar at the top, but i can still drag it down. Is there a way to completely disable the notification/status bar?

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

    Android Kotlin getClient() Unresolved reference

    Posted: 13 Nov 2020 12:37 PM PST

    I am following this explanation:

    https://developers.google.com/ml-kit/language/translation/android

    I have problem with this code:

     val options = TranslatorOptions.Builder() .setSourceLanguage(TranslateLanguage.ENGLISH) .setTargetLanguage(TranslateLanguage.GERMAN) .build() val englishGermanTranslator = Translator.getClient(options) 

    Only "getClient" remained red. Everything else was properly imported with Alt Enter

    Am I missing something? :)

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

    Building the right Android View Abstraction

    Posted: 13 Nov 2020 08:34 AM PST

    Calendar widget doesn't display years before 2020? How can I fix this?

    Posted: 13 Nov 2020 08:41 AM PST

     final Button pick_Date = (Button) findViewById(R.id.pickDate); final EditText editDate = (EditText) findViewById(R.id.date); final Calendar myCalendar = Calendar.getInstance(); final DatePickerDialog.OnDateSetListener date = new DatePickerDialog.OnDateSetListener() { @Override public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) { myCalendar.set(Calendar.YEAR, year); myCalendar.set(Calendar.MONTH, monthOfYear); myCalendar.set(Calendar.DAY_OF_MONTH, dayOfMonth); String myFormat = "yyyy-MM-dd"; SimpleDateFormat sdf = new SimpleDateFormat(myFormat, Locale.US); editDate.setText(sdf.format(myCalendar.getTime())); } }; pick_Date.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { final Calendar c = Calendar.getInstance(); mYear = c.get(Calendar.YEAR); mMonth = c.get(Calendar.MONTH); mDay = c.get(Calendar.DAY_OF_MONTH); DatePickerDialog dpd = new DatePickerDialog(Registraton.this, new DatePickerDialog.OnDateSetListener() { @Override public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) { if(year >mYear) view.updateDate(mYear,mMonth,mDay); if (monthOfYear < mMonth && year == mYear) view.updateDate(mYear,mMonth,mDay); if (dayOfMonth < mDay && year == mYear && monthOfYear == mMonth) view.updateDate(mYear,mMonth,mDay); editDate.setText(dayOfMonth+"/"+(monthOfYear + 1)+"/"+year); } },mYear,mMonth,mDay); dpd.getDatePicker().setMinDate(System.currentTimeMillis()); dpd.show(); } }); 
    submitted by /u/Murod19
    [link] [comments]

    Kotlin Newsletter

    Posted: 13 Nov 2020 12:26 PM PST

    50k Downloads on the First day launch .

    Posted: 13 Nov 2020 12:49 PM PST

    Hi everyone as said in the title I will publish soon , I worked alone on it since 2017 its a niche social platform for sports lovers , I have 0 found to use in publicity and 0 knowledge however , Im here to learn from you guys . So I have a questions what should I do for making my app sucessfull and what should I learn ? I aiming to have 50k Download the first I publish my app , I wanna learn how can I achieve my goal

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

    No comments:

    Post a Comment