1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-19 16:13:46 +02:00
Commit graph

383 commits

Author SHA1 Message Date
Christophe Beyls
2a4bedbccf Implement an AnimatedStateListDrawable for the bookmark status icon 2019-05-11 22:11:02 +02:00
Christophe Beyls
50200ebed5 Replace compound drawable PNG icons with vector drawables 2019-04-25 01:24:45 +02:00
Christophe Beyls
9c1db446d2 Group ObjectAnimators in progress bar animated vector drawable, now that the AAPT2 bug has been fixed in Gradle plugin 3.4 2019-04-24 23:43:36 +02:00
Christophe Beyls
6c3655e205 Use the new built-in Transformations.distinctUntilChanged() 2019-04-24 23:38:00 +02:00
Christophe Beyls
1d4aa090c4 Remove deprecated method calls 2019-04-24 00:05:10 +02:00
Christophe Beyls
f35b755bea Enable Java 8 language support and refactor code to use lambdas and try-with-resources 2019-04-04 01:31:10 +02:00
Christophe Beyls
2f16683674 Delay IntervalLiveData refresh to allow the previous result to be dispatched on active even when it's already expired 2019-03-08 00:03:01 +01:00
Christophe Beyls
29af6e4601 Replace deprecated methods with newer equivalents 2019-02-05 21:20:09 +01:00
Christophe Beyls
1c926b1cfd Simpler implementation of up navigation fix from track screen to main activity 2019-02-05 20:48:03 +01:00
Christophe Beyls
214a6dfe71 Enhance up navigation from track Activity to main Activity: don't re-create the main Activity
Closes #7, closes #23
2019-02-04 21:24:09 +01:00
Christophe Beyls
d7e888bbd7 Enhance up navigation from event details to track Activity 2019-02-04 20:38:12 +01:00
Christophe Beyls
1bbb4ad824 Use the new postprocessing DSL block to configure code and resources shrinking
Stop using reflection to instantiate fragments in MainActivity
2019-02-03 23:05:40 +01:00
Christophe Beyls
a21bfcd275 Fix NullPointerException when the RecyclerView's adapter in LiveListFragment finishes updating asynchronously after the fragment is detached 2019-02-02 23:35:57 +01:00
Christophe Beyls
dd25e82c1e Fix: prevent crash on sime devices in case of duplicate bookmark 2019-02-02 12:08:10 +01:00
Christophe Beyls
12bbb8a31a Updated campus map image for 2019 2019-02-02 11:54:51 +01:00
Christophe Beyls
65cc597f74 Use the database Executor to execute one-shot queries 2019-01-30 13:55:37 +01:00
Christophe Beyls
a3dfdb3da4 New feature: bookmarks list sharing through Android Beam (NFC) 2019-01-29 21:22:30 +01:00
Christophe Beyls
a4348a168b Add back deprecation warning suppression in ThemeUtils 2019-01-29 21:20:03 +01:00
Christophe Beyls
97f7a50275 Don't trigger updates in TrackScheduleEventActivity on database changes: retrieve a snapshot of the schedule instead 2019-01-29 21:16:43 +01:00
Christophe Beyls
700ad50eb9 Move bookmark status into its own ViewModel controlled by the activity and integrate a bottom app bar with a floating action button to manage bookmark status.
Auto-hide the top toolbar on scroll in event details screens
Remove legacy UnderlinePageIndicator. Swiping is still possible.
2019-01-29 12:55:21 +01:00
Christophe Beyls
2e17feb3ef Remove legacy parent activity meta-data 2019-01-29 12:39:24 +01:00
Christophe Beyls
75512c1364 Improve NfcUtils to provide methods to convert data from and to NdefRecord 2019-01-28 20:47:44 +01:00
Christophe Beyls
5f3b8f945d Make LinkClickListener safer 2019-01-28 16:59:48 +01:00
Christophe Beyls
5985d3bd82 Adjust time padding in schedule item layout and change the highlighted time background color to accent color 2019-01-28 16:39:46 +01:00
Christophe Beyls
573b5c4544 Improve initial display of data in RecyclerViewFragment 2019-01-28 15:21:53 +01:00
Christophe Beyls
31e2ddd609 Update NFC callbacks to allow returning any kind of NdefRecord, and use NdefRecord.createMime() to create the records 2019-01-28 14:45:33 +01:00
Christophe Beyls
4df07a40b3
Refactor all database code to use Room, LiveData and the pagination library (#42)
* Bump minSDK version to 16 because SQLite < 3.7.11 doesn't support syntax 'CREATE TABLE IF NOT EXISTS' for FTS tables

* Reimplement search results screen using pagination, share a ViewModel between the Activity and the Fragment to allow updating the same fragment instance

* Preserve scroll position 0 in live fragments to ensure the insert/remove animation will be visible

* Simplify MultiChoiceHelper to always dispatch selection changes to the adapter using a payload, which prevents item crossfading on selection state change

* Use withLayer() for better performance of progress bar fade out animation
2019-01-28 13:30:07 +01:00
Christophe Beyls
bc27d4af49 Mirror the drawer shadow image for RTL configuration 2019-01-27 21:13:28 +01:00
Christophe Beyls
c33f7b23e3 Improve RTL support in all layouts
Disable RTL mode for TabLayout
Fix RTL support of CollapsingToolbarLayout
Use android:textAppearance attribute instead of style when possible.
2019-01-27 19:35:56 +01:00
Christophe Beyls
924e089e86 Replace legacy horizontal progress bar with material horizontal progress bar backport implementation on API <21 2019-01-27 02:56:08 +01:00
Christophe Beyls
b79e29a67c Performance fix: ensure the ViewPager is only made visible when the adapter is set to avoid it to layout pages too early 2019-01-25 02:00:48 +01:00
Christophe Beyls
7e15f7de55 Use a consumable LiveData event to report the schedule download result to UI in place of LocalBroadcastManager
Use a simple AtomicBoolean instead of a lock to prevent concurrent downloads
2019-01-24 20:20:50 +01:00
Christophe Beyls
2a7b1439cc Rewrite LiveRoomStatusesLiveData to not inherit from AsyncTaskLiveData and not cancel the running download task 2019-01-23 21:37:02 +01:00
Christophe Beyls
18e69e8860 Make RecyclerView INVISIBLE instead of GONE to prevent relayout causing blinking items 2019-01-22 00:35:54 +01:00
Christophe Beyls
133a247544 Don't perform identical searches twice in SearchResultActivity, and display the error message about query size using a Snackbar instead of a dialog 2019-01-18 00:53:07 +01:00
Christophe Beyls
e438eca1c3 Code cleanups and remove unused resources 2019-01-07 02:41:53 +01:00
Christophe Beyls
cdf4cc46b6 Update used libraries in the README and about screen 2019-01-06 00:42:04 +01:00
Christophe Beyls
90087e1539 Properly handle '@' in URLs 2019-01-05 23:37:09 +01:00
Christophe Beyls
79cedff72f Update DatabaseManager.getYear() to ensure it's never called from the main thread and compute the year from the Event day whenever possible 2019-01-05 23:13:26 +01:00
Christophe Beyls
48318d1f4f Refactor TrackScheduleListFragment to use a RecyclerView instead of a ListView and removed remaining ListView-specific code 2019-01-02 11:11:49 +01:00
Christophe Beyls
6d569f27da Refactor PersonsListFragment to use a RecyclerView with fast scrolling instead of a ListView 2018-12-30 20:42:58 +01:00
Christophe Beyls
f8d97d0270 Update RecyclerViewFragment to stop using a custom RecyclerView and allow overriding the creation of the RecyclerView 2018-12-30 19:36:15 +01:00
Christophe Beyls
311a7c8e89 Remove warning about deleted method in ConcatAdapter 2018-12-30 03:44:46 +01:00
Christophe Beyls
166907578a Use Material style fast scroll thumb and track drawables on API<21 2018-12-29 22:02:56 +01:00
Christophe Beyls
e873f6d62a Use CollapsingToolbarLayout to implement the extended header in PersonInfoActivity 2018-12-17 22:02:40 +01:00
Christophe Beyls
961a6b0c8e Replace custom widgets with Material components for SnackBar, NavigationView, FAB and TabLayout 2018-12-16 19:47:20 +01:00
Christophe Beyls
a7a62ebd15 Use the newer ViewPropertyAnimator API to fade out the progress bar 2018-12-16 16:45:51 +01:00
Christophe Beyls
b09ad57411 Pass the parent view to the header view LayoutInflater in PersonInfoListFragment 2018-12-15 22:20:25 +01:00
Christophe Beyls
05c229a313 Update the settings screen to Preferences library 1.1.0 2018-12-15 14:33:06 +01:00
Christophe Beyls
e92766abaa Migrate to AndroidX and reorganize imports 2018-12-13 04:19:20 +01:00
Christophe Beyls
ca89d4b325 Fix deprecation warnings 2018-12-13 03:50:08 +01:00
Christophe Beyls
50307373b8 Moved ConcatAdapter out of the support library private package 2018-12-13 03:30:28 +01:00
Christophe Beyls
96e1a9302d Use static factory method to retrieve LoaderManager instances 2018-12-13 01:54:30 +01:00
Christophe Beyls
8bd33a04ec Upgrade to support libraries 28.0.0 2018-10-17 02:23:51 +02:00
Christophe Beyls
40ba5569ae Removed obsolete class SafeLoaderUtils 2018-09-26 23:16:44 +02:00
Christophe Beyls
f021b1cdea Added start/end layout attributes where missing instead of falling back to left/right 2018-07-24 16:57:46 +02:00
Christophe Beyls
d68432d252 Added room status ton event details ContentDescription in lists for visually impaired people 2018-07-24 16:29:08 +02:00
Christophe Beyls
1fdedba500 Added missing @NonNull annotations 2018-06-17 22:41:29 +02:00
Christophe Beyls
2ba84ae11c Use onSupportNavigateUp() for up navigation 2018-06-17 22:30:48 +02:00
Christophe Beyls
909e4d1aff Migrate the settings screen to the preferences support library.
Added some custom layouts to fix small display issues
2018-06-17 22:22:07 +02:00
Christophe Beyls
e0b93b8959 Renamed animator-v11 folder since the project now has minSDK > 11 2018-06-17 18:22:05 +02:00
Christophe Beyls
df3ec2e7a6 Updated AppCompat to 27.1.1 and removed Loader hacks which are no longer necessary 2018-06-17 18:11:37 +02:00
Christophe Beyls
65178e5b5a Implement a custom MovementMethod to properly support clickable spans with text selection. Fixes #38 2018-06-08 23:13:29 +02:00
Christophe Beyls
e95fb8740e Merge branch 'master' into feature/room_status 2018-01-31 00:51:24 +01:00
Christophe Beyls
a0e5dbb14a Switch nav URLs to https 2018-01-31 00:05:05 +01:00
Christophe Beyls
f54a5ccd02 Added "Volunteer" link in main menu, fixes #29 2018-01-31 00:01:21 +01:00
Christophe Beyls
955c17feee Move the "About" dialog to the settings screen 2018-01-30 23:47:09 +01:00
Christophe Beyls
1f85faa66b Updated room status url for production and adjusted timings 2018-01-30 18:34:44 +01:00
Christophe Beyls
9f367e65a0 Fix: properly schedule the room status strategy update when the days list changes 2018-01-30 16:56:38 +01:00
Christophe Beyls
a1ba1d2c5e Added notes for implementors on how to disable room status support 2018-01-30 16:49:28 +01:00
Christophe Beyls
ab338dad67 Display room status in event lists, event details screen & room dialog title 2018-01-30 16:32:39 +01:00
Christophe Beyls
21a89885d0 Properly handle the case when the system clock is turned backwards in TrackScheduleListFragment 2018-01-30 15:58:27 +01:00
Christophe Beyls
439fcf973f Removed unnecessary toolbar titleTextAppearance attribute 2018-01-29 23:35:45 +01:00
Christophe Beyls
aacb75954d Use DatabaseUtils where applicable to simplify code 2018-01-29 18:16:10 +01:00
Christophe Beyls
655057f93e Implemented complex refresh logic for Room Statuses 2018-01-28 22:24:26 +01:00
Christophe Beyls
2561ebdf44 Merge branch 'master' into feature/room_status
# Conflicts:
#	app/src/main/java/be/digitalia/fosdem/api/FosdemApi.java
2018-01-27 21:50:52 +01:00
Christophe Beyls
56b69585ad Use LiveData instead of local broadcasts to update the ProgressBar in MainActivity.
This simplifies code and allows the progress bar to always reflect the current status.
2018-01-27 02:13:05 +01:00
Christophe Beyls
74e0c1270c Fix: disable the up navigation button while the event is loading 2018-01-27 00:41:02 +01:00
Christophe Beyls
d7ddcc4ad7 Migrate all non-Cursor Loaders code to LiveData & ViewModel 2018-01-27 00:00:05 +01:00
Christophe Beyls
9b39c73615 Removed unnecessary use of ViewConfigurationCompat 2018-01-22 15:01:34 +01:00
Christophe Beyls
10c06ac6dc Merge branch 'master' into feature/room_status 2018-01-18 15:47:12 +01:00
Christophe Beyls
ed3f4daf86 Removed dependency to Context in HttpUtils 2018-01-18 15:10:03 +01:00
Christophe Beyls
d859676d62 Added the Room Status API 2018-01-17 21:10:36 +01:00
Edward Betts
0f5eba3593
Correct a spelling mistake. 2018-01-13 14:01:57 +00:00
Christophe Beyls
96b48a5d68 Added adaptive launcher icon and shortcut icons 2018-01-11 00:16:01 +01:00
Christophe Beyls
1304bc147d Disable unnecessary permissions on recent Android versions 2018-01-09 22:18:20 +01:00
Christophe Beyls
3f989d6c34 Bump minSdkVersion to 15 which is the minimum one required by the Custom tabs library 2018-01-09 22:11:21 +01:00
Christophe Beyls
dccbb8e74b Optimized the FOSDEM title VectorDrawable 2018-01-09 15:49:05 +01:00
Christophe Beyls
f48d275909 Added support for JobScheduler and notification channels in Android O 2018-01-09 15:44:36 +01:00
Christophe Beyls
b16bf335b7 Updated code to the latest support library and build tools.
MinSDK is now 14; removed legacy code
2018-01-03 17:04:01 +01:00
Christophe Beyls
5f3f09f0b3 Use LocalBroadcastCursor to listen for DB changes instead of ContentResolver with fake Uris 2017-10-07 23:55:32 +02:00
Christophe Beyls
66bb625955 Drop support for API 7-8 devices.
It's been a good time!
2017-05-21 19:55:32 +02:00
Christophe Beyls
1519401b54 Added basic Chrome custom tabs integration to open browser links with a more integrated look when available 2017-05-06 19:07:48 +02:00
Christophe Beyls
033ce7ebcf Replaced "world" icon with "info" icon for the button to open person info in the browser 2017-05-06 19:04:12 +02:00
Christophe Beyls
d03f18d5d7 Improved HTTP buffering 2017-02-20 16:54:56 +01:00
Christophe Beyls
d8e56147d2 - Disable the AlarmReceiver on boot when not necessary to speed up the boot process
- Properly cancel alarms rescheduled in the past after a DB update.
2017-02-10 16:52:34 +01:00
Christophe Beyls
4faf70f1f6 Don't use PendingIntent.FLAG_CANCEL_CURRENT so alarms can be properly canceled 2017-02-08 20:43:35 +01:00
Christophe Beyls
4a63b8e186 Retrieve application id from BuildConfig for Intent action names & database Uris 2017-02-06 19:03:05 +01:00
Christophe Beyls
dee70b5258 Updated all room images
More complete, more detailed, smaller footprint
2017-01-31 15:26:20 +01:00
Christophe Beyls
38f15a8466 Added button linking to the local navigation website on the room image dialog 2017-01-29 21:37:32 +01:00
Christophe Beyls
b06684a9c5 Improved StringUtils.toSlug()
- remove dots
- replace ß with ss
2017-01-29 21:25:58 +01:00
Christophe Beyls
4aa734ca3b Prevent the app from crashing when trying to launch an invalid link or when no browser is installed. 2017-01-25 16:06:14 +01:00
Christophe Beyls
702e3b7583 Added on-site navigation button in maps screen 2017-01-24 01:14:23 +01:00
Christophe Beyls
2e90602ba8 Don't remove underscores when transforming speaker names to URL slugs 2017-01-23 03:15:17 +01:00
Christophe Beyls
3477fda521 Fixed notification crash on Jellybean & KitKat
(vector drawables not supported for notification action buttons)
2017-01-23 02:52:15 +01:00
Christophe Beyls
e86a5622b6 Implement approximate state restoration for PhotoView; fixes #20 2017-01-22 21:11:07 +01:00
Christophe Beyls
b2e50f8e4d Add id to scrollview to allow restoring the scroll position; fixes #17 2017-01-21 00:04:55 +01:00
Christophe Beyls
7ec0599fd9 Added colors to distinguish track types 2017-01-12 17:32:15 +01:00
Christophe Beyls
1e748874d9 Removed underline for persons and room links and unify their appearance.
Disabled instance state save for TextViews showing heavy text or custom spans.
2017-01-09 12:25:46 +01:00
Christophe Beyls
bedab2071c Improved bookmark add/remove vector animation and make it compatible with any background color 2017-01-08 23:13:36 +01:00
Christophe Beyls
01e1c25f36 Added bookmarks export to iCalendar file, closes #5 2017-01-06 21:13:05 +01:00
Christophe Beyls
9e4efd69e2 Ensure links have a minimum height of 48dp 2017-01-06 03:26:55 +01:00
Christophe Beyls
640c304735 Use ${applicationId} placeholder in manifest where applicable for easier maintenance in forks 2017-01-06 00:09:54 +01:00
Christophe Beyls
67e5ea57af Fixed Event.getDuration() to return minutes and not seconds 2017-01-05 23:51:27 +01:00
Christophe Beyls
c8a1fdef78 Fixed some Lint warnings 2017-01-05 22:34:53 +01:00
Christophe Beyls
e0440a0ead Moved shortcuts to xml-v22 to avoid duplicating it in the final apk file 2017-01-05 22:12:01 +01:00
Christophe Beyls
6d378165e2 - Fixed bug with empty adapters in ConcatAdapter
- Cache the total item count in ConcatAdapter and skip sending specific notify* updates after notifyDataSetChanged() has been called.
2016-12-29 18:44:41 +01:00
Christophe Beyls
fb4bd3dbb3 Use wrap_content instead of ?attr/actionBarSize for Toolbar height. 2016-12-29 17:17:42 +01:00
Christophe Beyls
1348da72d4 NextLiveListFragment and NowLiveListFragment now share the same RecycledViewPool 2016-12-16 02:00:54 +01:00
Christophe Beyls
6246671c38 No more reflection hacks: replaced PreferenceFragment with AppCompatPreferenceActivity 2016-12-13 15:23:39 +01:00
Christophe Beyls
56f3843d9f Improved preferences screen display to make it look more live the native one 2016-12-13 00:38:49 +01:00
Christophe Beyls
1c7f29d17c Improved code to handle HTML lists 2016-12-12 22:41:26 +01:00
Christophe Beyls
d24a9dd5a9 Fixed dips to pixels rounding 2016-12-12 18:26:58 +01:00
Christophe Beyls
7e90352750 Added "bookmarks" and "live" app shortcuts for Android 7.1+ 2016-12-11 14:18:09 +01:00
Christophe Beyls
84829c3345 Extract identical vector paths to values/vector_paths.xml 2016-12-11 03:03:49 +01:00
Christophe Beyls
6c6bc28ad1 Added bookmark icon (un)check animation 2016-12-10 19:56:18 +01:00
Christophe Beyls
9ff63fb011 Added multi-level lists support to HTML parser; fixes #14 2016-12-01 22:47:01 +01:00
Christophe Beyls
9fd6c6c374 Migrated most ListViews to RecyclerViews
- Use ConcatAdapter to replace header View in PersonInfoListFragment
- Use MultiChoiceHelper to implement MultiChoiceMode in RecyclerView
- Instances of TracksListFragment share a common RecycledViewPool to lower memory usage.
2016-12-01 16:42:14 +01:00
Christophe Beyls
71b030c994 Replaced manual divider inflation with LinearLayoutCompat's divider support in links list 2016-12-01 03:45:11 +01:00
Christophe Beyls
9496513e7e Added intent-filter to enable link to notification settings when long-pressing a notification in API 21+ 2016-11-27 04:34:42 +01:00
Christophe Beyls
e38db9ae58 Updated notifications delay text in preferences screen; show a checkbox to enable notifications on API 21+ 2016-11-21 21:08:39 +01:00
Christophe Beyls
295a70d441 Improved accessibility throughout the app 2016-11-21 21:07:35 +01:00
Christophe Beyls
2ba817a56d Fixed ActionBarDrawerToggle drawer opening behavior and replaced deprecated DrawerLayout.setDrawerListener() with DrawerLayout.addDrawerListener() 2016-11-20 12:10:01 +01:00
Christophe Beyls
12531785f7 Replaced ProgressBars with ContentLoadingProgressBars and re-implemented ListFragment 2016-11-20 11:51:18 +01:00
Christophe Beyls
098403d7e6 Added hack to ensure the sync icon animation will always play properly 2016-11-20 11:02:13 +01:00
Christophe Beyls
bf2d4a05c1 Improved ic_filter_list_selected_white vector drawable 2016-11-03 03:55:09 +01:00
Christophe Beyls
67a6895aca Moved property animation resources to the animator folder 2016-11-03 03:09:38 +01:00
Christophe Beyls
91f1034e10 Optimized the FOSDEM logo vector drawable 2016-11-01 01:45:12 +01:00
Christophe Beyls
df6627ad6a Use AsyncTaskCompat to execute download tasks in parallel 2016-10-31 01:05:56 +01:00
Christophe Beyls
ee94d840f2 Removed workaround for fixed AppCompat bug (links improperly colored) 2016-10-26 16:24:51 +02:00
Christophe Beyls
591851eb50 Added a vector drawable rotation animation when pressing the refresh button 2016-10-26 15:48:18 +02:00
Christophe Beyls
a5f406026c Migrated to AppCompat 24.1.1 and converted most icon resources to vector drawables 2016-10-26 15:44:02 +02:00
Christophe Beyls
31a13a02c2 Fixed rare case when trying to unregister a null observer 2016-10-26 14:52:06 +02:00
Christophe Beyls
49dbe375b7 Use strict shrinkMode with the proper rules to improve resources shrinking 2016-10-26 13:24:02 +02:00
Christophe Beyls
cef24a6282 Deleted unused image 2016-10-26 13:12:10 +02:00
Christophe Beyls
3c3412cd84 Inverted the actions of onCreateActionMode() and onPrepareActionMode() to ensure display is properly updated when the adapter dataset changes. 2016-08-29 00:09:36 +02:00
Christophe Beyls
9ebce6034f Turn some private fields to package-local fields to avoid unnecessary indirections through synthetic methods generated for inner classes. 2016-08-27 21:29:05 +02:00
Christophe Beyls
fc82441c9a Use SharedPreferencesCompat.EditorCompat to use apply() when available for better performance. 2016-08-06 01:27:03 +02:00
Christophe Beyls
10bd2a7108 Moved SlidingTabLayout to the main widgets package; merged some of its files 2016-05-31 21:31:20 +02:00
Christophe Beyls
9faca330bf Fixed memory leak in ListFragment's adapter in older Android versions 2016-05-30 23:25:54 +02:00
Christophe Beyls
cb054007da Updated the code to allow fragments in ViewPager to start as soon as they are visible 2016-05-30 23:09:50 +02:00
Christophe Beyls
97156d6061 - Improved SlidingTabLayout to properly handle adapter change and refresh automatically on dataset changed.
- Fixed memory leak caused by keeping the PagerAdapter around after the view hierarchy has been destroyed.
2016-05-30 22:11:45 +02:00
Christophe Beyls
ff140b060c Optimized iteration performance in SlidingTabLayout 2016-05-29 13:25:19 +02:00
Christophe Beyls
e4dfbc67c1 Improved SlidingTabLayout for simpler code and better respect of material design guidelines 2016-05-28 23:14:35 +02:00
Christophe Beyls
e33961eade Moved default values of UnderlinePagerIndicator to a style and removed deprecated methods 2016-05-28 12:58:26 +02:00
Christophe Beyls
7f037faf18 Disable automatic backup 2016-05-16 18:54:42 +02:00
Christophe Beyls
782f45034c Fixed misc lint warnings and replaced deprecated methods 2016-05-07 19:18:09 +02:00
Christophe Beyls
e1ac84d605 Removed HTTPS security hacks where no longer necessary 2016-05-07 17:44:43 +02:00
Christophe Beyls
756428263d Simplified Parcelable implementation 2016-03-11 01:02:17 +01:00
Christophe Beyls
ead14cb597 New room map images from the iPhone app. 2016-01-25 23:50:14 +01:00
Christophe Beyls
ae1736a218 Removed place name from directions URL to fix compatibility with OSMAnd.
Fixes #12
2016-01-25 23:02:57 +01:00
Christophe Beyls
71adb08875 Workaround for AppCompat bug incorrectly coloring links on API 21-22 2016-01-06 22:37:05 +01:00
Christophe Beyls
3320f96cd2 Replaced deprecated Resources.getColor() with ContextCompat.getColor() 2016-01-06 21:14:35 +01:00
Christophe Beyls
b6a3f7e1af Highlight date-time in bookmarks list for conflicting schedules
Fixes #4
2016-01-06 21:07:55 +01:00
Christophe Beyls
61f407a6d2 Deleted commented line 2016-01-06 20:36:41 +01:00
Christophe Beyls
b70cd4d0bd Re-indented SQL queries in DatabaseManager
for better readability
2016-01-05 22:17:23 +01:00
Christophe Beyls
1d410fb2b8 Added RTL support 2016-01-04 00:03:19 +01:00
Christophe Beyls
fd8a806236 Enhanced list item layouts and make them RTL-compatible. 2016-01-03 23:16:19 +01:00
Christophe Beyls
d6f1de2aae Ensure the bookmarks ActionMode is closed when the fragment is destroyed. 2016-01-02 22:31:50 +01:00
Christophe Beyls
ca71cc6bd9 Delayed drawer menu actions until the menu is closed. 2016-01-02 21:55:33 +01:00
Christophe Beyls
fe3031fc4c Backwards-compatible material simple_list_item_1 layout 2016-01-02 01:28:44 +01:00
Christophe Beyls
435d1aa078 Replaced FOSDEM title image with a vector drawable 2016-01-02 00:38:21 +01:00
Christophe Beyls
c88e2b144b Various display fixes 2016-01-02 00:29:25 +01:00
Christophe Beyls
3100bce74c Dynamic toolbar elevation in MainActivity
depending on the current section.
2016-01-01 22:45:47 +01:00
Christophe Beyls
040d8a070a New app icon, more material-ish 2016-01-01 22:27:57 +01:00
Christophe Beyls
719e387d91 Added a fix for crashes while zooming in PhotoView inside a DrawerLayout. 2016-01-01 21:43:57 +01:00
Christophe Beyls
06b2c82242 Fixed "DB last updated" date format 2016-01-01 21:18:20 +01:00
Christophe Beyls
14f38d5e6e Updated Navigation Drawer in MainActivity to comply with latest material design guidelines. 2016-01-01 21:16:18 +01:00
Christophe Beyls
24b6364a96 Fixed time formatting to properly use the device's current Locale. 2015-12-27 19:30:43 +01:00
Christophe Beyls
ae7ef84396 Implemented backport version of simple_list_item_2 for Material Design
and removed custom secondary text color on older Android versions
2015-12-27 19:07:44 +01:00
Christophe Beyls
9ffa61f70b Migrate to AppCompat 23.1.1
Removed legacy hacks
Material dialogs on older versions
2015-12-27 01:28:59 +01:00
Christophe Beyls
63bd76f5ed Improved ListView styling by using built-in attribute listChoiceBackgroundIndicator 2015-12-26 17:45:30 +01:00
Christophe Beyls
f31af2f492 Moved all build config values to build.gradle 2015-12-25 16:52:12 +01:00
Christophe Beyls
d5b0b833dd Regression fix: main menu background not properly applied to the entire menu zone. 2015-12-25 16:39:28 +01:00
Christophe Beyls
54f6a6945e Set alarms at the exact time instead of having them batched and delayed on Kitkat and above. 2015-12-25 16:21:08 +01:00
Christophe Beyls
29d923a1cd Updated Floating Action Button style to the official guidelines. 2015-06-26 17:32:03 +02:00
Christophe Beyls
b6cc5513db Replaced the ListView main menu with a ScrollView and an AdapterLinearLayout.
It makes the layout simpler and fixes focus issues in keypad navigation mode.
2015-06-24 16:43:22 +02:00
Christophe Beyls
0c2ddc73e0 Moved launcher icon to mipmap resource folders for better scaling on modern devices. 2015-06-08 18:11:01 +02:00
Christophe Beyls
56fea42162 Workaround to support "If-Modified-Since" conditional HTTP requests on web servers supporting GZIP compression, also enabling GZIP compression support on Android 2.1 and 2.2. 2015-05-30 23:51:29 +02:00
Christophe Beyls
b1d823d245 Misc. small cleanups 2015-04-02 02:29:59 +02:00
Christophe Beyls
90d73831c6 Added Http cache awareness
to skip updating the database when the remote file has not changed.
2015-02-05 23:49:31 +01:00
Christophe Beyls
6f48640a13 Removed restriction to only use Google Maps for directions if installed, allowing to use third-party apps or a browser. 2015-02-05 00:32:43 +01:00
Christophe Beyls
74f1a7e2b3 Added warning message instead of crash when no compatible calendar app is found. 2015-02-04 23:37:51 +01:00
Christophe Beyls
7f8a8aa5cb Improve readability of up navigation code in EventDetailsActivity and add missing flags in the Manifest file for it. 2015-02-04 23:30:13 +01:00
Christophe Beyls
45b162246c Updated campus map to 2015 edition. 2015-02-04 00:32:44 +01:00
Christophe Beyls
1a8e48b46a Update manifest file for next hotfix release. 2015-01-19 23:41:44 +01:00
Christophe Beyls
cef5f95ad1 Move "Settings" and "About" from options menu to main menu footer. 2015-01-19 23:40:55 +01:00
Christophe Beyls
b25326e845 Tweak track_schedule layout in tablet landscape mode to increase card elevation and compensate for the compatibility padding. 2015-01-19 22:57:38 +01:00
Christophe Beyls
89bdf37ee0 Use slightly darker separator line color 2015-01-19 21:00:03 +01:00
Christophe Beyls
27ed59732d Reduced the right margin of dual pane tablet layout to 96dp. 2015-01-19 19:52:37 +01:00