Views DSL AppCompat¶
AppCompat extension of Views DSL
How AppCompat works with xml¶
When using an AppCompat theme, the LayoutInflater
replaces the platform
widgets like TextView
and Button
found in your xml layouts by a
compatibility version (i.e. AppCompatButton
, AppCompatTextView
, etc.).
If you’re curious to see how it works, look for the method createView
in the
AppCompatViewInflater
class from the android.support.v7.app
package.
How AppCompat works with Splitties Views DSL¶
Since the LayoutInflater
only works on xml, if you use view(::Button)
with Views DSL,
you get a Button
instance, not an AppCompatButton
instance. This means it
will not have AppCompat features and styling.
However, if you use button()
, or v<Button>()
, it will automatically delegate to
this split if in the dependencies, returning an AppCompatButton
instance.
This works for all AppCompat widgets.
Supported widgets¶
All AppCompat widgets are supported as of version 27.1.1
of the support
library.
Here’s the full list:
* TextView
* ImageView
* Button
* EditText
* Spinner
* ImageButton
* CheckBox
* RadioButton
* CheckedTextView
* AutoCompleteTextView
* MultiAutoCompleteTextView
* RatingBar
* SeekBar
Just call the related method that is the camelCase version of the PascalCase constructor.
For example, you can call seekBar(…) { … }
and you’ll receive an AppCompatSeekBar
instance.
As an alternative, you can also use these types with the reified type parameter version of v
,
like v<Spinner>()
, and you’ll automatically get the AppCompat version! In fact, that’s what
the more specialized inline functions like button
do under the “hood”.
Note that automatically doesn’t mean magically. In fact, no reflection is involved (contrary to xml inflation).
You can also see the source of the function that maps to AppCompat widgets versions, and the InitProvider that makes it zero initialization on your side.
There’s also support for Toolbar
with the toolbar
function, and SwitchCompat
with
the switch
function.
Note that the returned Toolbar
handles config changes.
Multi-process apps¶
If your app needs to use AppCompat themed widgets in the non default process, you’ll need to
manually setup ViewFactory so it uses AppCompat. Here’s how you need to it: Copy paste
this InitProvider into a package of an android library/app module of your project, then declare it in the
AndroidManifest.xml
of the module exactly like it is done here. To do so, copy paste it, then fix the package of the class under the android:name
xml attribute
of the provider
tag, then specify the android:process
value to the one of your non default
process.
Be sure to test it to make sure you have set it up properly.
Download¶
implementation "com.louiscad.splitties:splitties-views-dsl-appcompat:2.1.1"