Android Rearrangeable Layout


Source link: https://github.com/rajasharan/RearrangeableLayout

Android Rearrangeable Layout

An android layout to re-arrange child views via dragging

Screencast Demo

Layout Usage

All the child views are draggable once the layout is added to an activity ( activity_main.xml)

<com.rajasharan.layout.RearrangeableLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:id="@+id/rearrangeable_layout"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:clipToPadding="false"
  app:outlineWidth="2dp"
  app:outlineColor="@color/cyan"
  app:selectionAlpha="0.5"
  app:selectionZoom="1.2"
  >

<!-- add child views with `android:id` attr to 

save position during orientation change -->

<TextView

android:id="@+id/textview_1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Sample Demo with very large text that will overflow in width"

android:textSize="30sp"

android:background="@android:color/holo_green_light"

android:layout_margin="15dp"

/>

<!-- more child views -->  </com.rajasharan.layout.RearrangeableLayout>

Child Position Listener

Add a ChildPositionListener to the root layout to receive updates whenever any child view is dragged ( MainActivity.java)

@Override protected void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentView(R.layout.activity_main);

root = (RearrangeableLayout) findViewById(R.id.rearrangeable_layout);

  root.setChildPositionListener(new RearrangeableLayout.ChildPositionListener() {

@Override

public void onChildMoved(View childView, Rect oldPosition, Rect newPosition) {

 Log.d(TAG, childView.toString());

 Log.d(TAG, oldPosition.toString() + " -> " + newPosition.toString());

}

  
}
);
 
}

License

The MIT License (MIT) 

Resources

ACN Android Framework is being developed to reduce application development effort and time providing custom...

  1. Application and Activity classes that encapsulate general configuration of application and initialization of many widely-used third-party libraries.
  2. View classes with sophisticated, yet easy-to-use features, powered by default views of Android and other third-party views shared on GitHub.

A library which extends ToggleButton to allow for a button that toggles between two images.

Android wrapper for Twilio's Phone Lookup API.

BugShaker allows your QA team and/or end users to easily submit bug reports by shaking their device. When a shake is detected, the current screen state is captured and the user is prompted to submit a bug report via email with this screenshot attached.

This library provides an Imageview which can paint a layer on top of the image. This feature could be used for text protection or to apply a tint to an image.

A lightweight library aiming to speed up Android app development by leveraging the new Android Data Binding and taking the best from the Model-View-ViewModel design pattern.

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