修復bug
This commit is contained in:
parent
8cf459b860
commit
849f5aa66d
@ -95,13 +95,11 @@ public class StringUtil {
|
|||||||
int minutes = (int) ((mms % (1000 * 60 * 60)) / (1000 * 60));
|
int minutes = (int) ((mms % (1000 * 60 * 60)) / (1000 * 60));
|
||||||
int seconds = (int) ((mms % (1000 * 60)) / 1000);
|
int seconds = (int) ((mms % (1000 * 60)) / 1000);
|
||||||
sStringBuilder.delete(0, sStringBuilder.length());
|
sStringBuilder.delete(0, sStringBuilder.length());
|
||||||
if (hours > 0) {
|
|
||||||
if (hours < 10) {
|
if (hours < 10) {
|
||||||
sStringBuilder.append("0");
|
sStringBuilder.append("0");
|
||||||
}
|
}
|
||||||
sStringBuilder.append(String.valueOf(hours));
|
sStringBuilder.append(String.valueOf(hours));
|
||||||
sStringBuilder.append(":");
|
sStringBuilder.append(":");
|
||||||
}
|
|
||||||
if (minutes > 0) {
|
if (minutes > 0) {
|
||||||
if (minutes < 10) {
|
if (minutes < 10) {
|
||||||
sStringBuilder.append("0");
|
sStringBuilder.append("0");
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:paddingStart="20dp"
|
android:paddingStart="20dp"
|
||||||
android:layout_gravity="center_vertical"
|
android:layout_gravity="center_vertical"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1.2"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
android:gravity="center_vertical"
|
android:gravity="center_vertical"
|
||||||
android:textColor="#92949A"
|
android:textColor="#92949A"
|
||||||
|
@ -330,7 +330,7 @@
|
|||||||
android:layout_marginStart="4dp"
|
android:layout_marginStart="4dp"
|
||||||
android:layout_marginEnd="7dp"
|
android:layout_marginEnd="7dp"
|
||||||
android:background="@drawable/bg_live_item"
|
android:background="@drawable/bg_live_item"
|
||||||
android:visibility="visible">
|
android:visibility="gone">
|
||||||
|
|
||||||
<include layout="@layout/view_noble_seat" />
|
<include layout="@layout/view_noble_seat" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
Loading…
Reference in New Issue
Block a user