• Breaking News

    [Android][timeline][#f39c12]

    Tuesday, July 31, 2018

    My advice to people who want to get into professional Android development (some thoughts on indies as well) Android Dev

    My advice to people who want to get into professional Android development (some thoughts on indies as well) Android Dev


    My advice to people who want to get into professional Android development (some thoughts on indies as well)

    Posted: 31 Jul 2018 04:18 AM PDT

    I reverse-enginnered Instagram's custom SeekBar (Emoji Slider) and converted into a library. Highly efficient and customisable!

    Posted: 31 Jul 2018 08:24 AM PDT

    People already living in year 3023 yet i am still trying to finish my small app using new architecture. smh

    Posted: 31 Jul 2018 08:34 AM PDT

    JetBrains 50% off for today

    Posted: 31 Jul 2018 11:04 AM PDT

    Android interview preparation in 2.5 months

    Posted: 31 Jul 2018 09:24 AM PDT

    I have recently resigned from my position and am currently looking for a job. I have 3 months of notice period and I want to get better at cracking interviews.

    I am having 4.5 years of experience and am pretty comfortable with most of the Android components. I have been preparing myself on improving in background processing (haven't used services / intent services), user experience, MVVM, RxJava and writing unit test cases. I am also brushing up on Java concepts.

    I am used to handling multiple projects at a time and some where it has affected ways in which I plan things (ignoring writing test cases).

    I wanted suggestions and tips on how to prepare in the 2.5 months of time I have. What are the questions / concepts to prepare on given my background?

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

    How to write your Résumé to get hired

    Posted: 31 Jul 2018 03:09 AM PDT

    Just in case this helps anyone I just recently published a post about how to rewrite your résumé to get hired. Mostly for anyone recently getting into Android development & looking to transition it into a career choice but maybe others will benefit also.. It's definitely not pretty but it's what's worked consistently for me the past 7 years I've been at this so hopefully someone finds it useful :)

    https://medium.com/@lowcarbrob/why-your-app-developer-r%C3%A9sum%C3%A9-sucks-and-how-to-fix-it-f0e3f206a6fa

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

    �� An Android app for Slack (fully written in Kotlin)

    Posted: 31 Jul 2018 08:23 AM PDT

    Understanding the Android Shape Drawable by tuning its properties visually

    Posted: 31 Jul 2018 10:21 AM PDT

    Supporting display cutouts on edge-to-edge screens

    Posted: 31 Jul 2018 06:50 AM PDT

    I can't seem to remove my title bar and I can't figure out why...

    Posted: 31 Jul 2018 02:51 PM PDT

    I've looked through plenty of Stack Overflow posts on the topic but can't seem to find a solution that works. All I want to do is remove the title bar at the top of my activity. I have a feeling it has something to do with the library I'm using to create a drop down calendar as it had me paste in some xml code to ensure it is functioning correctly.

    Manifest file

    <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="com.timeblocks.timeblocks"> <uses-sdk tools:overrideLibrary="com.github.sundeepk.compactcalendarview" /> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity" android:theme="@style/AppTheme.NoActionBar"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> 

    Styles.xml

    <resources> <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> </style> //Hides title <style name="HiddenTitleTheme" parent="AppTheme"> <item name="windowNoTitle">true</item> <item name="windowActionBar">false</item> </style> <style name="AppTheme.NoActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> </style> <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" /> <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" /> <!-- styling for hour markers --> <style name="primaryHour"> <item name="android:layout_height">80dp</item> <item name="android:layout_width">match_parent</item> <item name="android:gravity">center</item> <item name="android:textAllCaps">true</item> <item name="android:textSize">@dimen/main_time_size</item> </style> <!-- styling for hour lines --> <style name="primaryHourLines"> <item name="android:layout_height">2dp</item> <item name="android:layout_width">match_parent</item> <item name="android:background">#E0E0E0</item> <item name="android:layout_marginTop">39dp</item> <item name="android:layout_marginBottom">39dp</item> <item name="android:layout_marginRight">16dp</item> </style> <style name="Toolbar" parent="Theme.AppCompat"> <!-- android:actionMenuTextColor is the color of the text of action (menu) items in the Toolbar, at least in the Theme.AppCompat theme. For some reason, they already get the textColorPrimary when running on API 21, but not on older versions of Android, so this is only necessary to support older Android versions. --> <item name="actionMenuTextColor">@android:color/white</item> </style> <style name="ToolbarStyle"> <item name="android:minHeight">?attr/actionBarSize</item> <!--<item name="android:background">@color/colorPrimary</item>--> <item name="theme">@style/Toolbar</item> <item name="popupTheme">@style/ThemeOverlay.AppCompat.Light</item> <item name="colorControlNormal">@android:color/white</item> <item name="colorControlHighlight">#3fff</item> <item name="titleTextAppearance">@style/ToolbarTitleTextAppearance</item> <item name="subtitleTextAppearance">@style/ToolbarSubtitleTextAppearance</item> </style> <style name="ToolbarTitleTextAppearance" parent="TextAppearance.Widget.AppCompat.Toolbar.Title"> <item name="android:textColor">@android:color/white</item> </style> <style name="ToolbarSubtitleTextAppearance" parent="TextAppearance.Widget.AppCompat.Toolbar.Subtitle"> <item name="android:textColor">@android:color/white</item> </style> </resources> 

    My main layout file

    <?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <android.support.design.widget.AppBarLayout android:id="@+id/app_bar_layout" android:layout_width="match_parent" android:layout_height="wrap_content" android:fitsSystemWindows="true" app:expanded="false" app:layout_behavior="com.timeblocks.timeblocks.ScrollingCalendarBehavior" android:theme="@style/AppTheme.AppBarOverlay"> <android.support.design.widget.CollapsingToolbarLayout android:id="@+id/collapsingToolbarLayout" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true" android:minHeight="?attr/actionBarSize" app:contentScrim="?attr/colorPrimary" app:layout_scrollFlags="scroll|exitUntilCollapsed" app:statusBarScrim="?attr/colorPrimaryDark"> <LinearLayout android:id="@+id/compactcalendar_view_container" android:layout_width="match_parent" android:layout_height="250dp" android:paddingTop="?attr/actionBarSize" app:layout_collapseMode="parallax" app:layout_collapseParallaxMultiplier="1.0"> <com.github.sundeepk.compactcalendarview.CompactCalendarView android:id="@+id/compactcalendar_view" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingLeft="10dp" android:paddingRight="10dp" app:compactCalendarBackgroundColor="?attr/colorPrimary" app:compactCalendarCurrentDayBackgroundColor="#FFC107" app:compactCalendarCurrentSelectedDayBackgroundColor="#BBDEFB" app:compactCalendarTextColor="#fff" app:compactCalendarTextSize="12sp" /> </LinearLayout> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" style="@style/ToolbarStyle" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" app:layout_collapseMode="pin" app:popupTheme="@style/AppTheme.PopupOverlay" app:contentInsetStart="0dp"> <RelativeLayout android:id="@+id/date_picker_button" android:layout_width="wrap_content" android:layout_height="?attr/actionBarSize" android:background="?android:selectableItemBackground" android:clickable="true" android:paddingLeft="16dp" android:paddingRight="16dp" android:orientation="vertical" android:focusable="true"> <TextView android:id="@+id/date_picker_text_view" android:layout_width="100dp" android:layout_height="wrap_content" android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Subtitle" android:textColor="@android:color/white" android:layout_alignParentBottom="true" android:layout_marginBottom="6dp"/> <ImageView android:id="@+id/date_picker_arrow" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBottom="@id/date_picker_text_view" android:layout_toRightOf="@id/date_picker_text_view" app:srcCompat="@drawable/ic_arrow_drop_down" tools:ignore="ContentDescription,RtlHardcoded" /> </RelativeLayout> </android.support.v7.widget.Toolbar> </android.support.design.widget.CollapsingToolbarLayout> </android.support.design.widget.AppBarLayout> <include layout="@layout/content_main" /> <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="bottom|end" android:layout_margin="@dimen/fab_margin" app:srcCompat="@android:drawable/ic_dialog_email" /> </android.support.design.widget.CoordinatorLayout> 

    Please, any help is appreciated.

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

    Android App Bundle Has Invalid ProGuard File

    Posted: 31 Jul 2018 08:50 AM PDT

    When trying to upload my bundle to the play store, it says the proguard deobsfucation file is invalid. I don't see how though as everything is commented out besides these 3 lines:

    -keep class com.google.firebase.**
    -keep class com.firebase.ui.auth.data.client.AuthUiInitProvider { *; }
    -keep class androidx.lifecycle.ProcessLifecycleOwnerInitializer { *; }

    Any help would be greatly appreciated!

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

    Question for devs with experience in Instant Apps

    Posted: 31 Jul 2018 04:08 PM PDT

    I'm thinking of re-working my app in order to offer an instant app, but I have some doubts.

    How much time did it take? I know it won't be the same for all apps, but I've no idea if its work for a day, a week or a couple months.

    Also, do you think it was worth it?

    Thanks!

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

    Help Using Computer Vision to Pull Text From Workout Machine Monitor

    Posted: 31 Jul 2018 08:27 AM PDT

    Character Creation?

    Posted: 31 Jul 2018 03:56 PM PDT

    Is there a free/paid library for character creation? Similar to how bitmoji is with custom characters and clothes?

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

    JUnit plugin to help fix errors while running tests, would love to get feedback

    Posted: 31 Jul 2018 07:01 AM PDT

    RXIFY: ERROR HANDLING WITH SUBJECTS (RELAYS)

    Posted: 31 Jul 2018 06:52 AM PDT

    AltBeacon library detection beacons issue

    Posted: 31 Jul 2018 06:30 AM PDT

    Hi everyone! I need some help with developed android application. Application should detect beacons (I use AltBeacon library for it), than requests some additional data from server and shows it to user. When application is active, there are no issues. But when application is in background mode there are 2 issues: It can stops working after few days There can be quite big delays for detecting beacons (1-2 hours for example) when application is inactive for 1 day for example. I use foreground service for preventing killing of application by Android. Also I use partial wake lock for preventing stand by mode. And also I use alarm manager and RTC wakeup for the same purposes. Are there any additional ways to prevent beacons detection delays and stopping application after few days? Thanks.

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

    Finally!! HiDPI Support added for Windows 8+: AS 3.2 RC1

    Posted: 30 Jul 2018 11:21 PM PDT

    Help!!! Need an idea for BCA final project.

    Posted: 31 Jul 2018 08:05 AM PDT

    Hey guys, I'm studying BCA final year and I really need some ideas on what to do for the final project. Many project centres contacted me and sent me some prebuilt project abstract.Most of them feels lacklustre and plain to me and I don't think I'll never learn anything if do a project made by them . I'll try to link some topics if i can in the comments.

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

    Some Outstanding and Exciting Reasons to Become an Android Developer

    Posted: 31 Jul 2018 11:33 AM PDT

    A question about android camera

    Posted: 31 Jul 2018 11:30 AM PDT

    Hello, I am a noob in android app development. Today I have an idea of developing app that can 'record' high fps video/slow motion video on android phones that are 'not supposed to do so' (Limited by configurations in /system/etc/media_profiles.xml and other related configuration files). The idea is to take pictures quickly (e.g. 60 pictures in 1 second) and then combine the pictures together to form a video. However, there are 3 problems that I might run into:

    1. Does Android Camera API 2 limits the number of pictures that could be taken in 1 second? If yes, how many?
    2. Besides the (possible) limiting factors of Android Camera API 2 and hardware, what are the other major limiting factors of how many photos that could be taken in 1 second by android camera?
    3. What is the feasibility of creating this app?

    Thank you!

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

    Was wondering if there was any way to convert my android app into a web app

    Posted: 31 Jul 2018 01:33 AM PDT

    Or some way to emulate my android app and host it on a website so non android users could get on it or something similar. Thanks in advance!

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

    Looking for programming friend!?

    Posted: 30 Jul 2018 10:42 PM PDT

    I have been working with java and android for about 3 years now and have a solid foundation, I have developed one app on the store while a friend of mine worked on the iOS version. I am okay on Xcode and Obj-C/Swift.

    I have learned a lot from him and has helped me overall as a programmer. I was wondering if anyone out there would like to chat and work on a project together. Help each other learn and maybe build something together as well.

    Send me a private message if you are interested?

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

    Comparing cross-platform development frameworks

    Posted: 31 Jul 2018 10:01 AM PDT

    No comments:

    Post a Comment

    Fashion

    Beauty

    Travel