version:7.1

fix:
update:优化详情界面,去掉fastjson,修复本地管理界面
This commit is contained in:
2022-12-28 16:47:34 +08:00
parent e937cfc5f3
commit 36ef540837
67 changed files with 11762 additions and 458 deletions

View File

@@ -2,7 +2,7 @@
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_80">
android:layout_height="@dimen/dp_64">
<LinearLayout
android:id="@+id/linearLayout"
@@ -18,18 +18,16 @@
android:id="@+id/icon"
android:layout_width="@dimen/dp_45"
android:layout_height="@dimen/dp_45"
android:layout_margin="@dimen/dp_5"
android:layout_gravity="center"
android:layout_margin="@dimen/dp_5"
android:adjustViewBounds="true"
android:scaleType="centerInside"
android:src="@mipmap/ic_launcher">
</ImageView>
android:src="@mipmap/ic_launcher" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="@dimen/dp_20"
android:layout_marginStart="@dimen/dp_20"
android:layout_weight="2"
android:orientation="vertical">
@@ -40,22 +38,20 @@
android:layout_weight="1"
android:gravity="center_vertical"
android:text="APP"
android:textSize="@dimen/sp_16"
android:textStyle="bold" />
<com.uiui.appstore.view.NumberProgressBar
android:id="@+id/pbProgress"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="@dimen/dp_5"
android:layout_weight="1"
app:progress_reached_bar_height="1.5dp"
app:progress_reached_color="#3498DB"
app:progress_text_color="#3498DB"
app:progress_reached_bar_height="6dp"
app:progress_reached_color="@color/default_color"
app:progress_text_color="@color/default_color"
app:progress_text_size="10sp"
app:progress_unreached_bar_height="0.75dp"
app:progress_unreached_color="#CCCCCC">
</com.uiui.appstore.view.NumberProgressBar>
app:progress_unreached_color="#CCCCCC" />
<LinearLayout
android:layout_width="match_parent"
@@ -76,9 +72,7 @@
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:text="--M/--M"
/>
android:text="--M/--M" />
</LinearLayout>
</LinearLayout>
@@ -97,33 +91,27 @@
android:layout_margin="@dimen/dp_20"
android:adjustViewBounds="true"
android:scaleType="centerInside"
android:src="@drawable/bt_delete">
</ImageView>
android:src="@drawable/bt_delete" />
<Button
android:id="@+id/start"
android:layout_width="@dimen/dp_60"
android:layout_height="@dimen/dp_30"
android:layout_width="@dimen/dp_45"
android:layout_height="@dimen/dp_20"
android:layout_gravity="center"
android:background="@drawable/btn_shap_open"
android:text="暂停"
android:textColor="@color/white"
android:background="@drawable/btn_shap_open" />
android:textColor="@color/white" />
</LinearLayout>
</LinearLayout>
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_marginLeft="@dimen/dp_70"
android:layout_marginRight="@dimen/dp_40"
android:layout_marginStart="@dimen/dp_40"
android:layout_marginEnd="@dimen/dp_40"
android:src="#9B9B9B"
app:layout_constraintBottom_toBottomOf="@+id/linearLayout"
app:layout_constraintEnd_toEndOf="@+id/linearLayout"
app:layout_constraintStart_toStartOf="@+id/linearLayout">
</ImageView>
app:layout_constraintStart_toStartOf="@+id/linearLayout" />
</androidx.constraintlayout.widget.ConstraintLayout>