FREE comprehensive course to learn - Android development [beginner to advance] Android Dev |
- FREE comprehensive course to learn - Android development [beginner to advance]
- As someone familiar with Java and new to Kotlin, I just stumbled upon this site, and it is on point with what I wanted to know
- Dealing with GDPR consent or no consent at all and just serve non-personalised ads?
- How do you open a Google sample repository from GitHub in Android Studio if it contains multiple apps inside?
- New York Developer Events
- Leveraging AAC to manage ExoPlayer state
- AndroidVeil - A library that let you implement skeletons and shimmer animation for veiling layouts and recyclerView.
- Cheaters don't like being caught :]
- Best way to get unique hardware ID?
- Help with legacy code refactor approach.
- Where's the best place to learn how to build a rudimentary (text-based, two or three page) app?
- What do you think about the CTR ?
- Pref Fragment Keeps Recreating
- What is your favorite API's json response structure?
- Typography - How much manual adjustment do I need?
- Im Looking for a good android kotlin book 2018
- Asking user for time zone
- Intermediate java programmer looking to get into android devolpement
- Facing difficulty with Android Dev since 2 Years
- افضل تطبيقات تنظيف الهواتف
- KotlinConf 2018 Recap
FREE comprehensive course to learn - Android development [beginner to advance] Posted: 31 Oct 2018 06:40 AM PDT Hi All, We are building a platform to educate people on emerging technology. We have already started with some of the courses including Android, Python, Machine Learning & AWS Cloud. The thing that we are focussing is right structure to the platform so that anyone can easily create videos and share the knowledge. One consideration that we have is there is a lot of online resources already. Would anyone be interested in this? Thanks [link] [comments] | ||
Posted: 31 Oct 2018 08:34 AM PDT
| ||
Dealing with GDPR consent or no consent at all and just serve non-personalised ads? Posted: 31 Oct 2018 01:52 AM PDT How did you manage GDPR? I implemented it in my apps but when i launch the app and i see a wall of text i get bored and get bad opinion about the app. After all I just want to use the app, i couldn't care less about some wall of text for something i can't avoid. So i started testing other apps in my category and i realized that most of the apps don't have any consent form. Which made me think.. What if i just use non-personalised ads in EEA and skip the annoying legal stuff? What do you think about this? Did you implement some consent form? How did you deal with it? Edit: honestly it seems easier and cheaper to use non personalised ads in EEA than to spam users with walls of text and then serve some personalised ads if any users contents [link] [comments] | ||
Posted: 31 Oct 2018 08:45 AM PDT So I want to analyze this repository: For example, it has these subfolders, which contain build.gradle files: Then under android-testing/ui/ there's Also under android-testing/unit/ there are 3 subfolders that contain build.gradle. So I understand that I can open all these folders that have build.gradle (and an "app" folder) inside them as separate apps in Android Studio, but can you also somehow open this whole top folder "android-testing" in Android Studio to have it all in one place and then select which one of these apps you want to build? There are maybe like 20 apps overall in this folder, so is there no other way than to open each one as a separate project? [link] [comments] | ||
Posted: 31 Oct 2018 08:07 AM PDT
| ||
Leveraging AAC to manage ExoPlayer state Posted: 31 Oct 2018 06:46 AM PDT | ||
Posted: 31 Oct 2018 04:42 AM PDT
| ||
Cheaters don't like being caught :] Posted: 31 Oct 2018 12:32 PM PDT
| ||
Best way to get unique hardware ID? Posted: 31 Oct 2018 04:06 PM PDT Best practice seems to avoid hardware IDs, but I haven't found a better alternative or much documentation on how to do it when required. Most of the guides say "Never do this and this should never be required", so I'm looking for a sanity check on this idea to make sure I'm not committing Android heresy. I'm working on a Kiosk app that uses Android tablets. My company owns all of the hardware, and I'm looking to make an app, put the app on an image, and flash that image to all of the tablets. The kiosks gather data, and I want to be able to tell which device the data came from. Not all of the kiosks will have internet access. I tried using TelephonyManager with getDeviceId(), but the tablets don't have mobile capability, so that wasn't feasible (oops). I'm thinking about using ANDROID_ID, but as far as I can tell, if I install the app, then flash that image to all of the devices, they would all have the same ANDROID_ID, so it wouldn't be a useful way to differentiate the devices. They hardware is all identical. MAC address doesn't work because not all of the kiosks have wifi. So the current plan is to use the much-maligned getSerial() with android.permission.READ_PHONE_STATE. I'm not too worried about the permission because I can just grant permission before I flash the image, right? Is there a better way to do this that I'm not thinking of? Thanks all. [link] [comments] | ||
Help with legacy code refactor approach. Posted: 31 Oct 2018 02:55 AM PDT I have been tasked with rewriting the login component of a particular app. Being probably the first activity created this activity has grown over time and is +3000 lines, a proper god class! It also extends from a base class to get some additional stuff. The new design involves using tabs for different login types. Being new to Android dev I have looked at the viewpager and have created the following: TabbedLoginActivity Tab1Fragment Tab2Fragment Tab3Fragment LoginTabPagerAdaper I have started on Tab1Fragment and copying code over but have become quickly overwhelmed. A lot of stuff will be common to all 3 tabs, dialogs, recievers, error handling etc...and some more specific to a given login type (tab) so before the login activity had one view with a lot of direct references to view items, now this common code I'm thinking of putting in the tabbed activity but obviously it won't have the corresponding view references. I have looked a bit at architecture patterns (maybe they didn't exist when all this stuff got created ;) ) is this where something like MVP would suit? To have some kind of controller to manipulate child fragments from the tabbed activity? I've basically disassembled the engine and am left starring at a bunch of parts on the garage floor! I don't wanna have just repeated code in each fragment. Any help, guidence, links gratefully received. Thanks So the new design [link] [comments] | ||
Where's the best place to learn how to build a rudimentary (text-based, two or three page) app? Posted: 31 Oct 2018 03:06 PM PDT | ||
What do you think about the CTR ? Posted: 31 Oct 2018 02:58 PM PDT
| ||
Pref Fragment Keeps Recreating Posted: 31 Oct 2018 10:40 AM PDT Firstly, sorry if I should not ask this here, but I'm having a slight issue. I've created a preference fragment (preference fragment compat) and it is the third tab of a bottom navigation layout. When switching to the tab, the page reloads (looks like it disappears and reappears) and the set summary is reset. Is this because I'm putting it as a tab in bottom navigation? [link] [comments] | ||
What is your favorite API's json response structure? Posted: 31 Oct 2018 10:04 AM PDT | ||
Typography - How much manual adjustment do I need? Posted: 31 Oct 2018 05:59 AM PDT Do you manually set things like letter-spacing, line length, line height and paragraph spacing? Or is this auto-set by just determining font-size and typeface? As a side note, is there a framework or something of the sort to help with typography? Or do developers usually just do it with native code? [link] [comments] | ||
Im Looking for a good android kotlin book 2018 Posted: 31 Oct 2018 04:19 AM PDT | ||
Posted: 31 Oct 2018 12:28 PM PDT Hey guys, So I am making an alarm app for an assignment and for some reason I have to let the user choose a time zone. I was wondering what the best approach would be. I attempted to create a spinner for them to select from but I can't get the options to appear in the drop down. Would it be best to ask for a city and then select the right time zone? Or is there a simpler solution? Thanks [link] [comments] | ||
Intermediate java programmer looking to get into android devolpement Posted: 31 Oct 2018 03:33 AM PDT Hey guys I'm studying information systems i took 2 courses of java and im looking to become android developer and i don't know where to start and what courses to take ? if you have any suggestions on courses or anything either paid or free courses i don't mind [link] [comments] | ||
Facing difficulty with Android Dev since 2 Years Posted: 31 Oct 2018 09:33 AM PDT
I try to get into Android Development, but I just am not able to. I'm experienced in JS, Python and know the workings of Java. But this android development just makes me all disappointed. So for that reason, I learnt React Native. It went well, until the Plugins there started to break and cause a lot of trouble. The layouting there is pretty simple, and things just work. But when it comes to Android Dev, There's just too many things to do, before I can even get a simple swiping component done. However, in react native or such, I can simply import a library and populate it with data. Now there may be real reasons to why its done so in Android But theres some Dagger and Singleton Models, and I get confused.
So how and from where do I learn the actual proper guide with best practices that allow me to get better at android dev and not scared away? [link] [comments] | ||
Posted: 31 Oct 2018 03:28 PM PDT
| ||
Posted: 31 Oct 2018 12:46 AM 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