diff options
author | cyberta <cyberta@riseup.net> | 2022-11-22 19:15:06 +0000 |
---|---|---|
committer | cyberta <cyberta@riseup.net> | 2022-11-22 19:15:06 +0000 |
commit | c3613c8521edb8f3e979331d2396977808581eeb (patch) | |
tree | 15aeeb09e1948466ae11b3591c7be89bb6de7bf9 /app/src/custom/res | |
parent | 5bec8a2ab69cd3d457756ca43fa28b880f95befa (diff) | |
parent | 2d20c8e269a502945e981662abe1f7818090a618 (diff) |
Merge branch 'motd' into 'master'
Motd
Closes #9082
See merge request leap/bitmask_android!213
Diffstat (limited to 'app/src/custom/res')
-rw-r--r-- | app/src/custom/res/drawable/ic_motd.png | bin | 0 -> 34639 bytes | |||
-rw-r--r-- | app/src/custom/res/drawable/motd_img.xml | 13 |
2 files changed, 13 insertions, 0 deletions
diff --git a/app/src/custom/res/drawable/ic_motd.png b/app/src/custom/res/drawable/ic_motd.png Binary files differnew file mode 100644 index 00000000..5d2efea4 --- /dev/null +++ b/app/src/custom/res/drawable/ic_motd.png diff --git a/app/src/custom/res/drawable/motd_img.xml b/app/src/custom/res/drawable/motd_img.xml new file mode 100644 index 00000000..d27db1a0 --- /dev/null +++ b/app/src/custom/res/drawable/motd_img.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> + + <!-- + ***************************************************** + Used to create the image to be shown in the motd fragment + example: <item android:drawable="@drawable/mybackground" /> + ***************************************************** + --> +<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> + <item android:drawable="@drawable/ic_motd" + android:gravity="fill_horizontal|fill_vertical"/> +</layer-list> + |