FlexInput


Source link: https://github.com/lytefast/flex-input

FlexInput

Android EditText wrapper to support text/emoji/camera/media input.

Features

  • advance overrides to enable custom behaviour/look
  • built in media picker
    • camera capture for quick pics
    • photo/file selector
  • gif keyboard entry support
  • file/attachment preview
  • multi-file support

Used in the Discord android app!

Image Examples

Dependencies

  • This is currently using the still in development cameraview
    • at the current moment the cameraview project is just a symlink to the camereaview/library project
    • you must do the same (include as a local project module dependency) in you project
  • Fresco

Usage

For more details refer to the sample app included in this project.

XML

To use the widget, you can just include it in your layout my_layout.xml:

<fragment
  android:id="@+id/flex_input"
  android:name="com.lytefast.flexinput.fragment.FlexInputFragment"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:focusable="true"
  android:focusableInTouchMode="true"

app:inputBackground="@drawable/rect_rounded_highlight_alpha_20"
  app:previewBackground="@drawable/rect_rounded_highlight_alpha_20"
  app:tabsBackground="@drawable/content_tab_background"
  app:hint="@string/msg_hint"
  app:hintColor="@color/colorHint"/>

Appearance styles

The widget tries to reuse as much of the app style as possible: icon colors are set via the colorButtonNormal, colorControlActivated, and colorControlHighlight style attributes.

See colors.xml:

<!--These are used within FlexInput. Override to customize.--> <!-- Defaults for these values are style attr and listed beside the overrides--> <color name="flexInputIconColor">@color/colorPrimary</color>  <!-- colorButtonNormal --> <color name="flexInputIconColorActivated">@color/colorPrimaryDark</color>  <!-- colorControlActivated --> <color name="flexInputIconColorDisabled">#c03f4a54</color>  <!-- colorControlHighlight -->

Or the same attributes in styles.xml.

Sample overrides of interest ``` <style name="FlexInput.Main" parent="AppTheme"> @color/app_input_background_color </style> <style name="FlexInput.AddContent.TabLayout" parent="FlexInput.AddContent.Base.TabLayout"> @drawable/rounded_rect </style> ```

There are also styles.xml overrides that you can provide. All styles are prefixed by FlexInput. See styles.xml for the full set of styles.

Addtionally there are special app attributes that you may set to customize the appearance of the widget.

  • inputBackground defines the background for the text input row
  • previewBackground defines the background for the attachment preview row

Setup

Now you need to add some hooks and adapters to make sure everything works. Don't worry there are some default implementations that can just be dropped in.

In MyFragment.java:

@Override public void onViewCreated(final View view, @Nullable final Bundle savedInstanceState) {

super.onViewCreated(view, savedInstanceState);

 final InputMethodManager imm =

 (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);

 flexInput = (FlexInputFragment) getChildFragmentManager().findFragmentById(R.id.flex_input);

if (savedInstanceState == null) {

  // Only create fragment on first load
  // UnicodeEmojiCategoryPagerFragment is a default implementation (see sample app)
  flexInput.setEmojiFragment(new UnicodeEmojiCategoryPagerFragment());

}

 flexInput

 .setContentPages(/* You can add custom PageSuppliers here */)

 .setInputListener(flexInputListener)

 .setFileManager(new SimpleFileManager("com.lytefast.flexinput.fileprovider", "FlexInput"))

 .setKeyboardManager(new KeyboardManager() {

@Override

public void requestDisplay() {

  flexInput.requestFocus();

  imm.showSoftInput(flexInput.getView(), InputMethodManager.SHOW_IMPLICIT);

}

 @Override

public void requestHide() {

  imm.hideSoftInputFromWindow(flexInput.getView().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

}

 
}
);
 
}
  /**  * Main point of interaction between the {
@link FlexInput
}
 widget and the client.   */ private final InputListener flexInputListener = new InputListener() {

@Override
public void onSend(final Editable data, List<? extends Attachment> attachments) {

Log.d("SAMPLE", "User sent: " + data.toString());

for (int i = 0; i < attachments.size();
 i++) {

 Log.d("SAMPLE", String.format("[%d] Attachment - %s", i, attachments.get(i).displayName)));

  
}

}
 
}
;

That's it! Now you have the output string and the attachments (in order) from the user.

Optional Features

private void optionalFeatures() {

flexInput

 // Can be extended to provide custom previews (e.g. larger preview images, onclick) etc.

 .setAttachmentPreviewAdapter(new AttachmentPreviewAdapter(getContext().getContentResolver()));
 
}

Power Overrides (Risky)

Additionaly there are some ways to integrate easier with your apps. However these features could potentially cause unforeseen problems. Last warning!

Using a custom EditText:

private void tryRiskyFeatures() {

final boolean hasCustomEditText = true;
if (hasCustomEditText) {

  LayoutInflater inflater = LayoutInflater.from(getContext());

  AppCompatEditText myEditText = (AppCompatEditText) inflater.inflate(

R.layout.my_edit_text_view, (ViewGroup) flexInput.getView(), false);

  flexInput.setEditTextComponent(myEditText);

}
 
}

There are other overrides that are possible via extension of FlexInputFragment, custom classes (e.g. AttachmentPreview), or providing your own Fragments to FlexInput.

You can trigger the feature via the sample app to experiment.

Resources

This plugin let's you easily use the jarjar tool in your gradle builds. This is handy for dependencies, which need to be repackaged, e.g. the full bouncy castle library for Android projects.

The OpenCV library for Android as Gradle project.

An utility library for Android to run actions in background. It handles orientation changes and delegates results to the visible Activity.

An implementation of the SQRL protocol. This library helps to parse, validate and create SQRL messages.

Android Transition animations explanation with examples.

Read RemoteViews information with some black magic.

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