Skip to content

Instantly share code, notes, and snippets.

View Muyangmin's full-sized avatar

Muyangmin Muyangmin

  • Chengdu, Sichuan, China.
View GitHub Profile
@Muyangmin
Muyangmin / AndroidManifest.xml
Created March 14, 2017 07:45 — forked from romannurik/AndroidManifest.xml
Android example of how to programmatically instantiate a View with a custom style.
<manifest ...>
...
<!-- Make sure your app (or individual activity) uses the
theme with the custom attribute defined. -->
<application android:theme="@style/AppTheme" ...>
...
</application>
</manifest>