ViewPump icon indicating copy to clipboard operation
ViewPump copied to clipboard

View Inflation you can intercept.

Results 30 ViewPump issues
Sort by recently updated
recently updated
newest added

If the same context is passed in, then just return the same LayoutInflater

From what I gathered from the doc and source code, currently we call only call `ViewPump.init` once, and have only one configuration If we want to add some new interceptors...

This will provide better safety for PRs when the sample app is not run manually

enhancement

In order to make it easier to debug inflation exceptions in large apps, we should consider adding an API that provides the layout resource id that was trying to be...

enhancement

Example: Printing the name of the view to be inflated results in duplicate lines getting printed since multiple `InflationRequest`s could be issued from successive attempts using different methods for inflating...

enhancement

Hi, artefact version over 2.0.0 unavalible at https://jitpack.io/ Pls help

Crashes are observed while using Viewpump SDKs. Please find the SDK details below. Its mostly happening on Android 11 and lower versions. **implementation "io.github.inflationx:viewpump:2.1.1" implementation "dev.b3nedikt.restring:restring:5.2.2" implementation "dev.b3nedikt.reword:reword:1.1.0"** ``` dev.b3nedikt.restring.internal.RestringResources.getLayout...

'init(io.github.inflationx.viewpump.ViewPump)' is deprecated

Global singletons are bad for testing, scoping, and composition. Use local ViewPump instances instead. ` private fun initCustomFont() { val calligraphyBuilder = CalligraphyConfig.Builder().setDefaultFontPath("fonts/ft_regular.ttf") .setFontAttrId(R.attr.fontPath).build() val viewPumpInterceptor = CalligraphyInterceptor(calligraphyBuilder) val viewPumpBuilder...