ViewPump 1.0.2-alpha-b55c5b5
See the version list below for details.
dotnet add package ViewPump --version 1.0.2-alpha-b55c5b5
NuGet\Install-Package ViewPump -Version 1.0.2-alpha-b55c5b5
<PackageReference Include="ViewPump" Version="1.0.2-alpha-b55c5b5" />
paket add ViewPump --version 1.0.2-alpha-b55c5b5
#r "nuget: ViewPump, 1.0.2-alpha-b55c5b5"
// Install ViewPump as a Cake Addin #addin nuget:?package=ViewPump&version=1.0.2-alpha-b55c5b5&prerelease // Install ViewPump as a Cake Tool #tool nuget:?package=ViewPump&version=1.0.2-alpha-b55c5b5&prerelease
ViewPump
ViewPump allows you to intercept the view inflation process. This library allows you to customize views on an app-wide scale without having to create sub-classes (although these are supported), both before and after the view itself has been inflated.
Heavily based on InflationX' ViewPump.
Getting Started
Install ViewPump from NuGet, or add a reference to ViewPump
.
At the entry point for your app, call ViewPump.InterceptingService.Init(...)
. You can optionally provide your own IInterceptingService
implementation.
Intercepting
The view inflation process can be intercepted with two methods:
Events
IInterceptingService
provides two events: InflateRequested
, and ViewInflated
.
InflateRequested
is triggered before a view is inflated, and ViewInflated
is triggered after a view has been inflated. Both events provide custom event arguments that give you relevant information per the event. See Events.
IInterceptingDelegate
You can optionally provide an IInterceptingDelegate
implementation by doing the following:
ViewPump.InterceptingService.Delegate = new MyCustomInterceptingDelegate();
The delegate gives you methods that provide you with the same information as the aforementioned events. The key difference, though, is that IInterceptingDelegate.OnInflateRequested
returns a bool
. This allows you to deny the inflation of particular views however, there may be side effects as a result of doing so.
Android sample project
Product | Versions Compatible and additional computed target framework versions. |
---|---|
MonoAndroid | monoandroid12.0 is compatible. |
-
MonoAndroid 12.0
- Xamarin.Google.Android.Material (>= 1.4.0.4)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on ViewPump:
Package | Downloads |
---|---|
DialogMessaging
A customizable, cross platform, dialog messaging service for Xamarin.Android and Xamarin.iOS. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.3 | 535 | 1/10/2022 |
1.0.2 | 436 | 1/10/2022 |
1.0.2-alpha-b55c5b5 | 163 | 1/10/2022 |
1.0.1 | 344 | 10/15/2021 |
1.0.0 | 332 | 9/7/2021 |
0.99.0-alpha | 212 | 4/30/2021 |
0.1.0 | 361 | 3/4/2021 |