HorizontalPicker


Source link: https://github.com/jhonnyx2012/HorizontalPicker

Horizontal Picker

What is this?

HorizontalPicker is a custom-build Android View used for choosing dates (similar to the native date picker) but draws horizontally into a vertically narrow container. It allows easy day picking using the horizontal pan gesture.

Too see it in action, download the demo app to try it out.

This is what it looks like.

Features

  • Date selection using a smooth swipe gesture
  • Date selection by clicking on a day slot
  • Date selection from code using the HorizontalPicker java object
  • Month and year view
  • Today button to jump to the current day
  • Localized day and month names
  • Configurable number of generated days (default: 120)
  • Configurable number of offset generated days before the current date (default: 7)
  • Customizable set of colors, or themed through the app theming engine

Note: This library uses the JodaTime library to work with days.

Requirements

  • Android 4.1 or later (Minimum SDK level 16)
  • Android Studio (to compile and use)
  • Eclipse is not supported

Getting Started

In your app module's Gradle config file, add the following dependency:

dependencies {

  compile 'com.github.jhonnyx2012:horizontal-picker:1.0.6' 
}

Then to include it into your layout, add the following:

<com.github.jhonnyx2012.horizontalpicker.HorizontalPicker
  android:id="@+id/datePicker"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"/>

In your activity, you need to initialize it and set a listener, like this:

public class MainActivity extends AppCompatActivity implements DatePickerListener {

  @Override
  protected void onCreate(@Nullable final Bundle savedInstanceState) {

// setup activity

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

 // find the picker

HorizontalPicker picker = (HorizontalPicker) findViewById(R.id.datePicker);

 // initialize it and attach a listener

picker

 .setListener(this)

 .init();

  
}

@Override
  public void onDateSelected(@NonNull final DateTime dateSelected) {

// log it for demo

Log.i("HorizontalPicker", "Selected date is " + dateSelected.toString());

  
}
 
}

Finally, you can also configure the number of days to show, the date offset, or set a date directly to the picker. For all options, see the full configuration below.

 // at init time
  picker

.setListener(listner)

.setDays(20)

.setOffset(10)

.setDateSelectedColor(Color.DKGRAY)

.setDateSelectedTextColor(Color.WHITE)

.setMonthAndYearTextColor(Color.DKGRAY)

.setTodayButtonTextColor(getColor(R.color.colorPrimary))

.setTodayDateTextColor(getColor(R.color.colorPrimary))

.setTodayDateBackgroundColor(Color.GRAY)

.setUnselectedDayTextColor(Color.DKGRAY)

.setDayOfWeekTextColor(Color.DKGRAY)

.setUnselectedDayTextColor(getColor(R.color.textColor))

.showTodayButton(false)

.init();

// or on the View directly after init was completed
  picker.setBackgroundColor(Color.LTGRAY);

  picker.setDate(new DateTime().plusDays(4));
Copyright 2017 Jhonny Barrios  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

Smali Control Flow Graph's.

Androwarn is a tool whose main aim is to detect and warn the user about potential malicious behaviors developed by an Android application.

The detection is performed with the static analysis of the application's Dalvik bytecode, represented as Smali.

This analysis leads to the generation of a report, according to a technical detail level chosen from the user.

JEB - The Interactive Android Decompiler.

Features:

  • Full-fledged Dalvik decompiler
  • Interactivity
  • Full APK view
  • API for Automation
  • Track your progress
  • Technical support
  • Multi-platform

JAD

JAva Decompiler is not maintained decompiler for the Java programming language, but it is still a powerful tool.

Androguard is mainly a tool written in python to play with:

  • Dex/Odex (Dalvik virtual machine) (.dex) (disassemble, decompilation),
  • APK (Android application) (.apk),
  • Android's binary xml (.xml),
  • Android Resources (.arsc).

Androguard is available for Linux/OSX/Windows.

Jams is a free, powerful and elegant music player for Android.

Features:

  • Unofficial Google Play Music support.
  • ID3v3 tag editing.
  • Custom libraries support.
  • Album artist sorting/tag support
  • Blacklist ability for artists, album artists, albums, songs, genres and playlists.
  • 9 band equalizer with bass boost, virtualizer, and reverb.
  • Individual EQ settings for each artist, album artist, album, song, genre, or playlist.
  • File/folder browsing.
  • Scrobbling.
  • Crossfade with customizable duration.
  • Auto-download album art from the internet.
  • 2 different base themes and 9 different color schemes.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes