1:修改我的页面

2:添加爵位功能
This commit is contained in:
2025-11-12 11:34:34 +08:00
parent f5aeeb88d7
commit ec58f46bf8
382 changed files with 12618 additions and 2597 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 444 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<animation-list android:oneshot="false"
xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="100" android:drawable="@drawable/loading_01" />
<item android:duration="100" android:drawable="@drawable/loading_02" />
<item android:duration="100" android:drawable="@drawable/loading_03" />
<item android:duration="100" android:drawable="@drawable/loading_04" />
<item android:duration="100" android:drawable="@drawable/loading_05" />
<item android:duration="100" android:drawable="@drawable/loading_06" />
<item android:duration="100" android:drawable="@drawable/loading_07" />
<item android:duration="100" android:drawable="@drawable/loading_08" />
<item android:duration="100" android:drawable="@drawable/loading_09" />
<item android:duration="100" android:drawable="@drawable/loading_10" />
<item android:duration="100" android:drawable="@drawable/loading_11" />
<item android:duration="100" android:drawable="@drawable/loading_12" />
</animation-list>

View File

@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<animated-rotate android:drawable="@drawable/ic_loading_rotate" android:pivotX="50.0%" android:pivotY="50.0%"
xmlns:android="http://schemas.android.com/apk/res/android" />

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="3dp">
<ProgressBar
android:id="@+id/listview_foot_progress"
android:layout_width="30dip"
android:layout_height="30dip"
/>
<TextView
android:id="@+id/listview_foot_more"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="5dp"
android:text="加载中..."/>
</LinearLayout>

View File

@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="bottom" >
<RelativeLayout
android:id="@+id/listview_header_content"
android:layout_width="fill_parent"
android:layout_height="80dp"
android:paddingTop="10dip"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="100dip"
android:layout_centerInParent="true"
android:gravity="center"
android:orientation="vertical"
android:id="@+id/listview_header_text">
<TextView
android:id="@+id/refresh_status_textview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/listview_header_hint_normal" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="gone"
android:layout_marginTop="3dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/listview_header_last_time"
android:textSize="12sp" />
<TextView
android:id="@+id/last_refresh_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp" />
</LinearLayout>
</LinearLayout>
<ImageView
android:id="@+id/listview_header_arrow"
android:layout_width="20dp"
android:layout_height="40dp"
android:layout_centerVertical="true"
android:layout_marginLeft="35dp"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@id/listview_header_text"
android:src="@drawable/ic_pulltorefresh_arrow" />
<com.rmondjone.xrecyclerview.SimpleViewSwitcher
android:id="@+id/listview_header_progressbar"
android:layout_width="30dip"
android:layout_height="30dip"
android:layout_toLeftOf="@id/listview_header_text"
android:layout_centerVertical="true"
android:layout_marginLeft="40dp"
android:layout_marginRight="10dp"
android:visibility="invisible" />
</RelativeLayout>
</LinearLayout>

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:id="@+id/lock_linearlayout"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView
android:layout_gravity="center"
android:gravity="center"
android:id="@+id/lock_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>

View File

@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/lock_recyclerview"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</androidx.recyclerview.widget.RecyclerView>
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/light_gray"
android:visibility="gone"/>
<com.rmondjone.locktableview.CustomHorizontalScrollView
android:scrollbars="none"
android:id="@+id/lockScrollView_parent"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/main_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</androidx.recyclerview.widget.RecyclerView>
</com.rmondjone.locktableview.CustomHorizontalScrollView>
</LinearLayout>

View File

@@ -0,0 +1,61 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/transparent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/lockHeadView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/table_head"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView
android:id="@+id/lockHeadView_Text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@color/beijin" />
<View
android:layout_width="1dp"
android:layout_height="match_parent"
android:background="@color/transparent" />
<com.rmondjone.locktableview.CustomHorizontalScrollView
android:id="@+id/lockHeadView_ScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none">
</com.rmondjone.locktableview.CustomHorizontalScrollView>
</LinearLayout>
<LinearLayout
android:id="@+id/unLockHeadView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/table_head"
android:gravity="center_vertical"
android:orientation="horizontal"
android:visibility="gone">
<com.rmondjone.locktableview.CustomHorizontalScrollView
android:id="@+id/unlockHeadView_ScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none">
</com.rmondjone.locktableview.CustomHorizontalScrollView>
</LinearLayout>
<com.rmondjone.xrecyclerview.XRecyclerView
android:id="@+id/table_scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent">
</com.rmondjone.xrecyclerview.XRecyclerView>
</LinearLayout>

View File

@@ -0,0 +1,73 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/head_contentLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:paddingTop="10dip"
android:paddingBottom="15dip">
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="30dip"
android:layout_marginRight="20dip">
<ImageView
android:id="@+id/head_arrowImageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:src="@drawable/ic_pulltorefresh_arrow" />
</FrameLayout>
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="100dip"
android:layout_marginRight="10dip">
<ImageView
android:id="@+id/head_progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/progressbar"
android:visibility="gone"
/>
</FrameLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center_horizontal"
android:orientation="vertical">
<TextView
android:id="@+id/head_tipsTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/listview_header_hint_normal"
android:textColor="#000000"/>
<TextView
android:id="@+id/head_lastUpdatedTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#000000"
android:textSize="10sp" />
</LinearLayout>
</RelativeLayout>
</LinearLayout>

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout
android:id="@+id/unlock_linearlayout"
android:gravity="center"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</LinearLayout>
</LinearLayout>

View File

@@ -0,0 +1,10 @@
<resources>
<string name="listview_header_hint_normal">下拉刷新</string>
<string name="listview_header_hint_release">释放立即刷新</string>
<string name="listview_loading">正在加载...</string>
<string name="nomore_loading">数据已全部加载结束</string>
<string name="refreshing">正在刷新...</string>
<string name="refresh_done">刷新完成</string>
<string name="loading_done">加载完成</string>
<string name="listview_header_last_time">上次更新时间:</string>
</resources>

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="AVLoadingIndicatorView">
<attr name="indicator">
<flag name="BallPulse" value="0"/>
<flag name="BallGridPulse" value="1"/>
<flag name="BallClipRotate" value="2"/>
<flag name="BallClipRotatePulse" value="3"/>
<flag name="SquareSpin" value="4"/>
<flag name="BallClipRotateMultiple" value="5"/>
<flag name="BallPulseRise" value="6"/>
<flag name="BallRotate" value="7"/>
<flag name="CubeTransition" value="8"/>
<flag name="BallZigZag" value="9"/>
<flag name="BallZigZagDeflect" value="10"/>
<flag name="BallTrianglePath" value="11"/>
<flag name="BallScale" value="12"/>
<flag name="LineScale" value="13"/>
<flag name="LineScaleParty" value="14"/>
<flag name="BallScaleMultiple" value="15"/>
<flag name="BallPulseSync" value="16"/>
<flag name="BallBeat" value="17"/>
<flag name="LineScalePulseOut" value="18"/>
<flag name="LineScalePulseOutRapid" value="19"/>
<flag name="BallScaleRipple" value="20"/>
<flag name="BallScaleRippleMultiple" value="21"/>
<flag name="BallSpinFadeLoader" value="22"/>
<flag name="LineSpinFadeLoader" value="23"/>
<flag name="TriangleSkewSpin" value="24"/>
<flag name="Pacman" value="25"/>
<flag name="BallGridBeat" value="26"/>
<flag name="SemiCircleSpin" value="27"/>
</attr>
<attr name="indicator_color" format="color"/>
</declare-styleable>
</resources>

View File

@@ -0,0 +1,56 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- 颜色 -->
<color name="color_hei_8">#00000000</color>
<color name="forget_pwd">#334E6C</color>
<color name="table_head">#E5EFFE</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
<color name="light_gray">#e6e6e6</color>
<color name="light_gray2">#fafafa</color>
<color name="deep_gray">#555555</color>
<color name="deep_red">#FF0033</color>
<color name="light_yellow2">#ADD8E6</color>
<color name="border_color">#817F80</color>
<color name="blue">#0000ff</color>
<color name="transparent">#00000000</color>
<color name="green">#0F0</color>
<color name="red">#FF0000</color>
<color name="jt1">#DDDDDD</color>
<color name="first">#b8b8b8</color>
<color name="first_dianji">#0cb9f5</color>
<color name="beijin">#2c8fd3</color>
<color name="orange">#ffa500</color>
<color name="tv_textblackcolor">#000000</color>
<color name="calendar_background">#e3eef4</color>
<color name="selection">#b1dce2ff</color>
<color name="calendar_zhe_day">#faedda</color>
<color name="event_center">#ff6bd697</color>
<color name="noMonth">#c0c0c0</color>
<color name="text_6">#FFf3feff</color>
<color name="text_7">#FFfff1f2</color>
<color name="Text">#603b07</color>
<color name="lv_cacheColorHint">#00000000</color>
<color name="ll_background_10501">#31abfe</color>
<color name="list_item_click">#76c120</color>
<color name="white_bg_10531M">#ffffffff</color>
<color name="txtToDay">#EE4000</color>
<color name="green_bg_10531M">#fff2f9ec</color>
<color name="ll_graybg">#EDEDE4</color>
<color name="search_editbg">#E8E8E8</color>
<color name="text_color">#ff434343</color>
<color name="review_bac">#FAFAFA</color>
<color name="review_pep">#3C70A6</color>
<color name="review_time">#C3C4C9</color>
<color name="review_content">#262B31</color>
<color name="horizontal_divider">#CED7DF</color>
<color name="comment_text">#7B7B7B</color>
<color name="comment_text_bottom">#949494</color>
<color name="horizontal_toutiao">#1989E0</color>
<color name="tabtitle_color">#CFEDF9</color>
<color name="tabitem_color1">#FFFFFF</color>
<color name="tabitem_color2">#F7F8F9</color>
<color name="dashline_color">#C2C0C2</color>
</resources>

View File

@@ -0,0 +1,4 @@
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="textandiconmargin">10dp</dimen>
</resources>

View File

@@ -0,0 +1,10 @@
<resources>
<string name="listview_header_hint_normal">pull to refresh</string>
<string name="listview_header_hint_release">release to start refresh</string>
<string name="listview_loading">loading...</string>
<string name="nomore_loading">no more to be loaded</string>
<string name="refreshing">refreshing...</string>
<string name="refresh_done">refresh done</string>
<string name="loading_done">loading done</string>
<string name="listview_header_last_time">last update</string>
</resources>