This commit is contained in:
Er2 2022-01-13 21:38:35 +00:00
commit a1de0cbb5b
12 changed files with 326 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
res/drawable-xhdpi/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

23
res/layout/dream.xml Normal file
View file

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8" ?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<org.er2.fireplace.FireplaceView
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<!-- Yes clock only for dream -->
<TextClock
android:textSize="32sp"
android:textColor="#fff"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end"
android:layout_marginEnd="32dp"
android:layout_marginTop="32dp"
/>
</FrameLayout>

6
res/layout/main.xml Normal file
View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<org.er2.fireplace.FireplaceView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>