change background image

This commit is contained in:
quantulr
2023-03-05 23:27:04 +08:00
parent 95dc483084
commit 56169543a2
14 changed files with 3 additions and 3 deletions

View File

@ -16,6 +16,7 @@ public class HomeViewModel extends ViewModel {
private final MutableLiveData<Float> rotation;
RotateThread rotateThread;
private Handler handler;
private Handler serialThreadHandle;
public HomeViewModel() {
handler = new Handler(Looper.getMainLooper()) {
@ -28,8 +29,6 @@ public class HomeViewModel extends ViewModel {
};
rotation = new MutableLiveData<>();
rotation.setValue((float) 0);
// rotateThread = new RotateThread(handler);
// rotateThread.start();
}
public void initThread() {

Binary file not shown.

After

Width:  |  Height:  |  Size: 466 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 612 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 136 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

View File

@ -4,7 +4,7 @@
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?attr/actionBarSize">
android:paddingTop="0dp">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/nav_view"

View File

@ -4,6 +4,7 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg"
tools:context=".ui.home.HomeFragment">
<ImageView