All Projects → VRGsoftUA → CombineView

VRGsoftUA / CombineView

Licence: MIT license
View that combines multiple images

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to CombineView

Avatarview
A circular Image View with a lot of perks. Including progress animation and highlight state with borders and gradient color.
Stars: ✭ 429 (+1488.89%)
Mutual labels:  widget, imageview
Circular Music Progressbar
Beautiful Circular Progress Bar with album art for android
Stars: ✭ 813 (+2911.11%)
Mutual labels:  widget, imageview
Circleimageview
A circular ImageView for Android
Stars: ✭ 14,102 (+52129.63%)
Mutual labels:  widget, imageview
aspect-ratio-imageview
A simple imageview which scales the width or height aspect with the given ratio
Stars: ✭ 72 (+166.67%)
Mutual labels:  imageview
Sunset-hadith
Islamic app written with Kotlin, using KTOR + coroutines + flow + MVVM + Android Jetpack + Navigation component. Old version using RxJava + Retrofit + OKHttp
Stars: ✭ 26 (-3.7%)
Mutual labels:  widget
Motion-Tab-Bar
A beautiful animated flutter widget package library. The tab bar will attempt to use your current theme out of the box, however you may want to theme it.
Stars: ✭ 237 (+777.78%)
Mutual labels:  widget
react-color
🎨 Is a tiny color picker widget component for React apps.
Stars: ✭ 50 (+85.19%)
Mutual labels:  widget
measurer
A widget that measure the size of its child.
Stars: ✭ 40 (+48.15%)
Mutual labels:  widget
phosphor-float-area
✊ Draggable ⚓ Dockable ↔️ Resizable ⛵ Floating 📑 Tabbed HTML5 dialogs! 🎉
Stars: ✭ 72 (+166.67%)
Mutual labels:  widget
FaceAware-Android
this helps to auto zoom for face on ImageView
Stars: ✭ 46 (+70.37%)
Mutual labels:  imageview
instagram-text-editor
An Instagram like text editor Flutter widget that helps you to change your text style.
Stars: ✭ 66 (+144.44%)
Mutual labels:  widget
responsible-ai-toolbox
This project provides responsible AI user interfaces for Fairlearn, interpret-community, and Error Analysis, as well as foundational building blocks that they rely on.
Stars: ✭ 615 (+2177.78%)
Mutual labels:  widget
Textylic
A note taking app developed for the 22nd century
Stars: ✭ 34 (+25.93%)
Mutual labels:  widget
flutter-tree
Flutter tree widget
Stars: ✭ 46 (+70.37%)
Mutual labels:  widget
yii2-datetime-widgets
Datetime widgets for Yii2
Stars: ✭ 22 (-18.52%)
Mutual labels:  widget
yii2-switch-widget
Bootstrap Switch Widget for Yii2
Stars: ✭ 17 (-37.04%)
Mutual labels:  widget
ngx-widget-grid
Angular 2.x or in general ng-x module for dashboards
Stars: ✭ 65 (+140.74%)
Mutual labels:  widget
yii2-content-tools
ContentTools editor implementation for Yii 2
Stars: ✭ 79 (+192.59%)
Mutual labels:  widget
sounds
Flutter plugin for sound. Audio recorder and player.
Stars: ✭ 74 (+174.07%)
Mutual labels:  widget
ViewPagers
When using the ViewPager widget it is not always obvious to the user that there are adjacent views they can navigate to. By implementing this widget you provide a clear indicator that there exists additional content which they can click or swipe to see.
Stars: ✭ 43 (+59.26%)
Mutual labels:  widget

HIRE US

CombineView

Usage

For a working implementation, Have a look at the Sample Project - sample

  1. Include the library as local library project.
allprojects {
    repositories {
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
   implementation 'com.github.VRGsoftUA:CombineView:0.1'
}
  1. Add view to layout:
<com.vrg.combineView.CombineView
        android:id="@+id/image"
        app:cvType="two"
        app:cvCorners="16dp"/>
  1. Load image to view
  //with Glide
        Glide.with(this)
                .load(R.drawable.elephant)
                .intoTop(image)

        Glide.with(this)
                .load(R.drawable.racoon)
                .intoBottom(image)
                
  //or without Glide
        image.setTopImage(ContextCompat.getDrawable(context, R.drawable.elephant))
	image.setBottomImage(ContextCompat.getDrawable(context, R.drawable.racoon))

Customization

Method Description
setCorners(float corners) Sets current view corners
setType(Type type) Sets current view type(two or four sub view)

Contributing

  • Contributions are always welcome
  • If you want a feature and can code, feel free to fork and add the change yourself and make a pull request
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].