All Projects → rzaripov1990 → Modernlistview

rzaripov1990 / Modernlistview

[FireMonkey] Modern ListView - Colorizer, Vertical\Horizontal mode, Columns and other

Programming Languages

pascal
1382 projects
delphi
115 projects

Labels

Projects that are alternatives of or similar to Modernlistview

Pulltozoominlistview
An Android custom ListView with pull to zoom-in and parallax effect header like Path App.
Stars: ✭ 891 (+809.18%)
Mutual labels:  listview
Paging library
A Flutter package for paginating a list view
Stars: ✭ 35 (-64.29%)
Mutual labels:  listview
Countdowntask
⌛️A countdown library for Android.
Stars: ✭ 64 (-34.69%)
Mutual labels:  listview
React Natives App
App for the React & React Native developer community as a demo project for the React Native meetups in Germany
Stars: ✭ 20 (-79.59%)
Mutual labels:  listview
Listbuddies
Android library to achieve in an easy way, the behaviour of the home page in the Expedia app, with a pair of auto-scroll circular parallax ListViews.
Stars: ✭ 971 (+890.82%)
Mutual labels:  listview
Restaurant App
Restaurant Food Ordering Mobile Application
Stars: ✭ 44 (-55.1%)
Mutual labels:  listview
Flabbylistview
Android library to display a ListView whose cells are not rigid but flabby and react to ListView scroll.
Stars: ✭ 764 (+679.59%)
Mutual labels:  listview
Android
Android projects with reusable components which will be useful in your applications.
Stars: ✭ 81 (-17.35%)
Mutual labels:  listview
React Native Super Grid
Responsive Grid View for React Native
Stars: ✭ 971 (+890.82%)
Mutual labels:  listview
Ultimaterefreshview
UltimateRefreshView 实现下拉刷新,上拉加载更多的轻量级库;支持RecyclerView ,ListView ,ScrollView & WebView
Stars: ✭ 64 (-34.69%)
Mutual labels:  listview
Llmlistview
super list view for uwp
Stars: ✭ 27 (-72.45%)
Mutual labels:  listview
Awesome Android Ui
😎😍Android libs and UI from GitHub or other websites. android libs from Github
Stars: ✭ 33 (-66.33%)
Mutual labels:  listview
Multi type list view
A flutter customer ListView that displays multiple widget types.
Stars: ✭ 47 (-52.04%)
Mutual labels:  listview
Clusterize.js
Tiny vanilla JS plugin to display large data sets easily
Stars: ✭ 6,995 (+7037.76%)
Mutual labels:  listview
Infinitelistview
A custom Android ListView that supports endless scrolling
Stars: ✭ 69 (-29.59%)
Mutual labels:  listview
Swipemenu
[DEPRECATED] A swipe menu for horizontal/vertical, support left/right and top/bottom directions
Stars: ✭ 817 (+733.67%)
Mutual labels:  listview
Google Books Android Viewer
Android library to bridge between RecyclerView and sources like web page or database. Includes demonstrator (Google Books viewer)
Stars: ✭ 37 (-62.24%)
Mutual labels:  listview
Videolistplayer
Play video in ListView or RecyclerView
Stars: ✭ 1,308 (+1234.69%)
Mutual labels:  listview
Vue Horizontal
An ultra simple pure vue horizontal layout for modern responsive web with zero dependencies. (SPA/SSG/SSR)
Stars: ✭ 75 (-23.47%)
Mutual labels:  listview
React Native Step Indicator
A simple react-native implementation of step indicator widget compatible with the ViewPager and ListView.
Stars: ✭ 1,054 (+975.51%)
Mutual labels:  listview

HitCount

ModernListView (Berlin, Tokyo [with fix], Rio)

Modern ListView - Colorizer, Vertical\Horizontal mode, Columns and other

Colorizer

colorizer

  • ListView1.SetColorItemSelected(TAlphaColorRec.Orangered);
  • ListView1.SetColorItemFill(TAlphaColorRec.Whitesmoke);
  • ListView1.SetColorItemFillAlt(TAlphaColorRec.Lightgrey);
  • ListView1.SetColorBackground(TAlphaColorRec.Whitesmoke);
  • ListView1.SetColorItemSeparator(TAlphaColorRec.Red);
  • ListView1.SetColorText(TAlphaColorRec.Darkmagenta);
  • ListView1.SetColorTextSelected(TAlphaColorRec.Blueviolet);
  • ListView1.SetColorTextDetail(TAlphaColorRec.Darksalmon);
  • ListView1.SetColorHeader(TAlphaColorRec.Crimson);
  • ListView1.SetColorTextHeader(TAlphaColorRec.Whitesmoke);
  • ListView1.SetColorTextHeaderShadow(TAlphaColorRec.grey);
  • ListView1.SetColorPullRefresh(TAlphaColorRec.Lime);
  • ListView1.SetColorPullRefreshIndicator(TAlphaColorRec.Limegreen);
  • ListView1.SetColorStretchGlow(TAlphaColorRec.Limegreen);
set custom color for item
  if ListView1.IsCustomColorUsed(ListView1.ItemIndex) then
    ListView1.SetDefaultColorForItem(ListView1.ItemIndex)
  else
    ListView1.SetCustomColorForItem(ListView1.ItemIndex, TAlphaColorF.Create(random(255) / 255, random(255) / 255, random(255) / 255, random(255) / 255).ToAlphaColor);

Horizontal Mode

horizontal mode

  • ListView1.Horizontal := true;

Columns Mode (only vertical)

colorizer

  • ListView1.ColumnWidth := 160;
  • ListView1.AutoColumns := true;

Events

event for AutoColumn mode

  procedure OnColumnClick(const Column: Integer; const X, Y: Single; const AItem: TListViewItem; const DrawebleName: string);

called when end of list

  procedure OnScrollEnd(Sender: TObject);

Methods

  • Style for ListView Columns Mode
  • ListView1.ShowScrollBar - hide/show scrollbar
  • ListView1.ItemsClearTrue - correct delete items
  • ListView1.OffsetTop - indent of the first element
  • ListView1.OffsetBottom - indent of the last element
  • ListView1.getFirstVisibleItemIndex - first visible ItemIndex
  • ListView1.getVisibleCount - amount of visible items
  • ListView1.getLastVisibleItemindex - first visible ItemIndex + amount of visible items
  • ListView1.SeparatorLeftOffset - indent for separator line
  • ListView1.SeparatorRightOffset - indent for separator line
  • ListView1.EnableTouchAnimation - enable/disable touch animation
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].