renopey / Roid-Library

A framework for Android containing lots of common modules/widgets/utils.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Common Modules

3rd Party Modules

Widgets and Utils

  • ROOT Utils: RootManager
  • QR bar scanning: zxing
  • Global CrashHandler;
  • API compatibility Util: RLAPICompat
  • RLCameraActivity: A custom camera.(Supports compress.)
  • View switcher: ViewFlow
  • Sliding menu: MenuDrawer
  • GestureImageView: Support to scale ImageView with gesture;
  • Custom dialogs:RLDialogRLAlertDialogRLListDialogRLLoadingDialog;
  • Other custom widgets: RLFileExplorerRLSpinnerRLWebViewRLOnClickListener
  • Utils:RLBluetoothHelperRLAppUtilRLFileUtilRLImgUtilRLIntentUtilRLJsonUtilRLNetUtilRLStrUtilRLSysUtilRLUiUtil

Usage

If you wanna prevent the unused modules from launching in background, just edit the AndroidManifest.xml file:

...
<application android:name="com.rincliu.library.app.RLApplication" 
        android:label="@string/app_name">
        <meta-data  android:name="ENABLE_CRASH_HANDLER" android:value="true"/>
        <meta-data  android:name="ENABLE_PUSH" android:value="false"/>
        <meta-data  android:name="ENABLE_FEEDBACK" android:value="false"/>
        <meta-data  android:name="ENABLE_ANALYTICS" android:value="false"/>
        ...
</application>
...

About

A framework for Android containing lots of common modules/widgets/utils.

License:Apache License 2.0


Languages

Language:Java 100.0%