All Projects → Bleoo → Windowimageview

Bleoo / Windowimageview

Licence: mit
An ImageView display in RecyclerView, looks like window.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Windowimageview

Rvparallaximageview
RvParallaxImageView用在recyclerview的item中,它可以随着recyclerview进行视差效果的移动,进而可以在一个小区域的item中展示一个完整的图片。适用于在recyclerview的item中显示大的广告图。
Stars: ✭ 224 (-67.95%)
Mutual labels:  ads, recyclerview, imageview
Shimmer Recyclerview X
🌀 ShimmerRecyclerViewX for AndroidX
Stars: ✭ 193 (-72.39%)
Mutual labels:  view, recyclerview
Discretescrollview
A scrollable list of items that centers the current element and provides easy-to-use APIs for cool item animations.
Stars: ✭ 5,533 (+691.56%)
Mutual labels:  view, recyclerview
Admobadapter
It wraps your Adapter to display Admob native ads and banners in a ListView/RecyclerView data set. It based on the Yahoo fetchr project https://github.com/yahoo/fetchr
Stars: ✭ 224 (-67.95%)
Mutual labels:  ads, recyclerview
Inifiniterecyclerview
Library for implementing endless loading list easily in Android applications
Stars: ✭ 79 (-88.7%)
Mutual labels:  view, recyclerview
Imagezoom
An Android library that makes any view to be zoomable.
Stars: ✭ 118 (-83.12%)
Mutual labels:  view, recyclerview
Snappyrecyclerview
An extension to RecyclerView which will snap to child Views to the specified anchor, START, CENTER or END.
Stars: ✭ 178 (-74.54%)
Mutual labels:  view, recyclerview
recycler-adapter
RecyclerView-driven declarative UIs
Stars: ✭ 124 (-82.26%)
Mutual labels:  view, recyclerview
bubble-layout
An Android ViewGroup that displays avatar bubbles... similar to the chat bubbles on Facebook Messenger.
Stars: ✭ 46 (-93.42%)
Mutual labels:  view, imageview
TimelineView
A customizable and easy-to-use Timeline View library for Android. Works as a RecyclerView decorator (ItemDecoration)
Stars: ✭ 169 (-75.82%)
Mutual labels:  view, recyclerview
Candyview
Implement any RecyclerView in just 1 Line. CandyView handles everything for you.
Stars: ✭ 15 (-97.85%)
Mutual labels:  view, recyclerview
Imageviewer
🔮图片浏览器,支持图片手势缩放、拖拽等操作,`自定义View`的模式显示,自定义图片加载方式,更加灵活,易于扩展,同时也适用于RecyclerView、ListView的横向和纵向列表模式,最低支持版本为Android 3.0及以上...
Stars: ✭ 363 (-48.07%)
Mutual labels:  recyclerview, imageview
Tc Material Design
Série de artigos sobre o Material Design Android
Stars: ✭ 64 (-90.84%)
Mutual labels:  fresco, recyclerview
Sharpview
安卓带有尖角气泡的控件(TextView,ImageView,EditText,Layout),支持渐变色,圆角等自定义属性
Stars: ✭ 137 (-80.4%)
Mutual labels:  view, imageview
Parallaxrecyclerview
Parallax effect on every item of your RecyclerView.
Stars: ✭ 237 (-66.09%)
Mutual labels:  recyclerview, imageview
Kotlin Playground
Kotlin practice
Stars: ✭ 111 (-84.12%)
Mutual labels:  recyclerview, imageview
ProgressableImageView
Change your users progress capability with ProgressableImageView
Stars: ✭ 86 (-87.7%)
Mutual labels:  view, imageview
SlideTable
可以滑动 以表格形式展示数据
Stars: ✭ 14 (-98%)
Mutual labels:  view, recyclerview
Recyclerview Fastscroller
A fully customizable Fast Scroller for the RecyclerView in Android, written in Kotlin
Stars: ✭ 585 (-16.31%)
Mutual labels:  view, recyclerview
Wechat Miniprogram Examples
WeChat mini program examples. 微信小程序示例
Stars: ✭ 634 (-9.3%)
Mutual labels:  zhihu

WindowImageView

An ImageView display in RecyclerView, looks like window.

Usage

JitPack.io, add jitpack.io repositiory and dependency to your build.gradle:

repositories {
    maven {
        url "https://jitpack.io"
    }
}

   dependencies {
       compile 'com.github.Bleoo:WindowImageView:1.0.2'
   }
 <io.github.bleoo.windowimageview.WindowImageView
        android:id="@+id/window_image_view"
        android:layout_width="match_parent"
        android:layout_height="180dp"
        app:frescoEnable="false"
        app:src="@drawable/timg" />
window_image_view.setFrescoEnable(true);
window_image_view.setImageResource(R.drawable.timg);
window_image_view.bindRecyclerView(recyclerView);

With Fresco

app:frescoEnable="false"
window_image_view.setFrescoEnable(true);
window_image_view.setImageURI(YourUri);

Revision History

V1.0.2 版本更新说明(2017-12-28)
  • 修复图片不显示问题
  • fresco 图片不显示及小图不放大的问题
  • 包名更换

MIT License

Copyright (c) 2017 Yang Liu

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

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].