GridBuilder


Source link: https://github.com/Eason90/GridBuilder

GridBuilder

GridBuilder is a view builder of Android native view group ——"GridLayout", simply placed GridLayout in the layout?GridBuilder will create the child views by calculator.

????

???? No data DEMO screenshot Online app screenshot

Module:

GridBuilderLib: GridBuilder Library

GridBuilderDemo: Application Demo

Library Structure:

/calculator: The calculator of layout

/listener: Listener of GridLayout

/utils: Utils class(currently only in order to generate reflection)

GridBuilder: Library entrance, core class

GridItem: Data objects should extends this abstract class to set the column and rows data

IGridItemView: The child view of GridLayout should implement this interface

Feature:

  1. Support Android non-touch devices(Box, TV), support child view focused animation
  2. Support custom child view position calculator(provided horizontal layout calculator)
  3. Support vertical and horizontal stretch(need to nested ScrollView or HorizontalScrollView out of GridLayout)
  4. Support for dynamic reflection

Instructions:

1.Placed the GridLayout in layout.xml

<RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">

 <android.support.v7.widget.GridLayout

 android:layout_width="wrap_content"

 android:layout_height="wrap_content" /> </RelativeLayout> 

2.Custom View should implement IGridItemView

public class TestGridItemView extends View implements IGridItemView {

private GridItem mGridItem;

public TestGridItemView(Context context) {

super(context);

  
}

public TestGridItemView(Context context, AttributeSet attrs) {

super(context, attrs);

  
}

public TestGridItemView(Context context, AttributeSet attrs, int defStyleAttr) {

super(context, attrs, defStyleAttr);

  
}

@Override
  public GridItem getGridItem() {

return mGridItem;
  
}

@Override
  public void setGridItem(GridItem gridItem) {

mGridItem = gridItem;
  
}
 
}
 

3.Defined the data object and extends GridItem:

public TestItem extends GridItem {

// can add any variable  
}
 

4.Get the data list of GridItem, GridItem can included the column and row data:

List<GridItem> gridItemList = new ArrayList<>();
 TestItem item = new TestItem();
 item.setRowSpec(2);
 item.setColumnSpec(3);
 gridItemList.add(item);
 

5.Create layout by GridBuilder:

GridBuilder.newInstance(this, mGridLayout)

// set the scale size of item while item focused

.setScaleSize(10, 10)

// set the item scale animation duration

.setScaleAnimationDuration(200)

// set the layout position calculator

.setPositionCalculator(new HorizontalPositionCalculator(5))

// set the default width and height of an item

.setBaseSize(100, 100)

// set the margin between two items

.setMargin(10)

// set the out margin of GridLayout

.setOutMargin(50, 50, 50, 50)

// set the data

.setGridItemList(gridItemList)

// set View Holder(for view reuse after views removed from GridLayout)

.setViewHolder(holder)

// implement the interface to create child view

.setOnCreateViewCallBack(new OnViewCreateCallBack() {

 @Override

 public View onViewCreate(LayoutInflater inflater, GridItem gridItem) {

  TestGridItemView view;

  if (null == convertView) {

view = new TestGridItemView(mContext);

  
}
 else {

view = (TestGridItemView) convertView;

  
}

  view.setGridItem(gridItem);

  return view;

 
}

}
)

.build();
 

To be improved:

  1. Dynamic focus style
  2. Recycling / child view reuse
  3. Friendly adapter design pattern

Support?

Please feel free to report bugs or ask for help via email.

Email: [email protected]

Resources

A simple library to make taking screenshots of your apps.

With the Marshmallow release and the new permissions model, taking screenshots of your applications has become just slightly more complicated as you need to deal with permissions on the run.

This library does it all for you regardless of the device you're running it on.

RxJava2 extensions for Android Databindings library.

Library for inject spherical metadata in photos and videos on Android. Only MP4 and JPEG formats supported.

Alternative for MediaPlayer for music files. Uses ExoPlayer 2 and MediaPlayer for lower APIs.

XmlToJson is an Android Studio Library which converts XML to JSON and JSON to XML.

It is fully configurable and easy to integrate with gradle.

Simple yet powerful SQLite database layer for Android that makes database handling feel like magic.

Overview:

  • Simple, intuitive & typesafe API
  • Minimal setup needed
  • Built in RxJava support with reactive stream semantics on queries and operations
  • Built in AutoValue immutable objects support
  • Full support for complex columns
  • Support for SQLite views
  • Persist any third party object with fully customizable object transformers
  • No reflection
  • Compile time annotation processing
  • Probably the fastest library for Android SQLite database operations (without memory caching)

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