RecordView


Source link: https://github.com/3llomi/RecordView/

RecordView

a Simple Audio Recorder View with hold to Record Button and Swipe to Cancel

Demo

Install

dependencies {

  compile 'com.devlomi.record-view:record-view:1.0.0beta' 
}

Usage

XML

<com.devlomi.record_view.RecordView

android:id="@+id/record_view"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_alignParentBottom="true"

android:background="#e4e4e4" />

Configure XML

//Optional change Record Button Color Animation

  • app:record_btn_transition_background="@drawable/transition_drawable"

Java

private RecordView recordView;  recordView = (recordView) findViewById(R.id.record_view);

Handling States

recordView.setOnRecordListener(new OnRecordListener() {

 @Override

 public void onStart() {

  //Start Recording..

  Log.d("RecordView", "onStart");

 
}

  @Override

 public void onCancel() {

  //On Swipe To Cancel

  Log.d("RecordView", "onCancel");

  
}

  @Override

 public void onFinish(long recordTime) {

  //Stop Recording..

  String time = getHumanTimeText(recordTime);

  Log.d("RecordView", "onFinish");

Log.d("RecordTime", time);

 
}

  @Override

 public void onLessThanSecond() {

//When the record time is less than One Second

  Log.d("RecordView", "onLessThanSecond");

 
}

}
);
 

Change Swipe To Cancel Bounds (when the 'Slide To Cancel' Text View get before Counter)

recordView.setCancelBounds(130);

Some Customization


  recordView.setSmallMicColor(Color.parseColor("#c2185b"));

 recordView.setRecordButtonColor(Color.parseColor("#ffffff"));

 recordView.setRecordButtonTransitionBackground(R.drawable.transition_drawable);

 recordView.setSlideToCancelText("TEXT");

 //disable Sounds

recordView.setSoundEnabled(false);

 //prevent recording under one Second (it's false by default)

recordView.setLessThanSecondAllowed(false);

  //set Custom sounds onRecord 

//you can pass 0 if you don't want to play sound in certain state

recordView.setCustomSounds(R.raw.record_start,R.raw.record_finished,0);

Note: for changing RecordButton Color Animation you must provide a Transition Drawable instead of a Normal Drawable and you can set it from Java or XML

Thanks/Credits

Resources

Photo image selection activity set library.

Android-Device-Compatibility just yet another compatibility package for Android. This project aims to make the app compatible with various devices all over the world. The project will take care about lots of issues caused by device differences, so you don't need to write a weird compatibility code on your own.

Features:

  • Workarounds for device-specific problems
  • OS version compatibility
  • OS framework bug-fixes

CustomType allows you to easily use different typfaces in your app. It was created to initially work with the Roboto family of fonts, but has since been adapted to allow you to use any typeface that you would like.

CustomType maintains static Typeface objects to avoid potential memory leaks that can occur. Hence, it is the ideal manner of using any custom typeface in your app, regardless of whether or not it belongs to the Roboto family.

An Android transformation library providing a variety of image transformations for Picasso.

This project collects and aggregates information about Android devices. It is designed to be open and transparent. All data is available and can be downloaded by everyone.

Google Direction API and Google Place API Library for Google Maps Android API v2.

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