feat: 优化代码

pull/141/head
kunfei 5 years ago
parent f81474b069
commit 3920db18de
  1. 2
      app/src/main/java/io/legado/app/ui/book/read/page/ContentView.kt
  2. 13
      app/src/main/res/layout/view_book_page.xml

@ -73,11 +73,9 @@ class ContentView(context: Context) : FrameLayout(context) {
} }
if (hideStatusBar) { if (hideStatusBar) {
tv_bottom_left.text = timeFormat.format(Date(System.currentTimeMillis())) tv_bottom_left.text = timeFormat.format(Date(System.currentTimeMillis()))
tv_bottom_right.gone()
battery_view.visible() battery_view.visible()
battery_view.setBattery(battery) battery_view.setBattery(battery)
} else { } else {
tv_bottom_right.visible()
battery_view.gone() battery_view.gone()
} }
} }

@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android" <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/page_panel" android:id="@+id/page_panel"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
@ -23,7 +24,9 @@
android:id="@+id/tv_top_right" android:id="@+id/tv_top_right"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textSize="12sp" /> android:layout_marginLeft="3dp"
android:textSize="12sp"
tools:ignore="RtlHardcoded,RtlSymmetry" />
</LinearLayout> </LinearLayout>
@ -66,12 +69,16 @@
android:id="@+id/tv_bottom_right" android:id="@+id/tv_bottom_right"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:textSize="12sp" /> android:layout_marginLeft="3dp"
android:textSize="12sp"
tools:ignore="RtlHardcoded,RtlSymmetry" />
<io.legado.app.ui.widget.BatteryView <io.legado.app.ui.widget.BatteryView
android:id="@+id/battery_view" android:id="@+id/battery_view"
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" /> android:layout_height="wrap_content"
android:layout_marginLeft="3dp"
tools:ignore="RtlHardcoded,RtlSymmetry" />
</LinearLayout> </LinearLayout>

Loading…
Cancel
Save