├── .gitignore
├── .idea
├── compiler.xml
├── copyright
│ └── profiles_settings.xml
├── encodings.xml
├── gradle.xml
├── inspectionProfiles
│ ├── Project_Default.xml
│ └── profiles_settings.xml
├── misc.xml
├── modules.xml
└── runConfigurations.xml
├── LICENSE
├── README.md
├── app
├── .gitignore
├── build.gradle
├── proguard-rules.pro
└── src
│ └── main
│ ├── AndroidManifest.xml
│ ├── java
│ └── com
│ │ └── yuyh
│ │ └── stickyheader
│ │ ├── Entity.java
│ │ ├── MainActivity.java
│ │ ├── OnValueChangeListener.java
│ │ ├── SectionAdapter.java
│ │ └── view
│ │ ├── StickyHeaderAdapter.java
│ │ └── StickyHeaderListView.java
│ └── res
│ ├── drawable
│ ├── scrollbar.9.png
│ ├── selector_bg_item.xml
│ └── selector_checkbox.xml
│ ├── layout
│ ├── activity_main.xml
│ ├── item_header.xml
│ └── item_row.xml
│ ├── mipmap-hdpi
│ └── ic_launcher.png
│ ├── mipmap-mdpi
│ └── ic_launcher.png
│ ├── mipmap-xhdpi
│ ├── btn_checked.png
│ ├── btn_normal.png
│ ├── ic_dest.png
│ ├── ic_launcher.png
│ └── ic_src.png
│ ├── mipmap-xxhdpi
│ └── ic_launcher.png
│ ├── mipmap-xxxhdpi
│ └── ic_launcher.png
│ └── values
│ ├── colors.xml
│ ├── strings.xml
│ └── styles.xml
├── build.gradle
├── gradle.properties
├── gradle
└── wrapper
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── screenshot
└── screenshot.gif
└── settings.gradle
/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/.idea/compiler.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/.idea/encodings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
17 |
18 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/Project_Default.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
--------------------------------------------------------------------------------
/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 | Android
39 |
40 |
41 | Android > Lint > Correctness
42 |
43 |
44 | Java
45 |
46 |
47 | Java language level migration aidsJava
48 |
49 |
50 |
51 |
52 | Android
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # StickyHeaderListView
2 | 仿滴滴打车开具发票页,ListView粘性Header
3 |
4 | ## 预览
5 |
6 |
7 |
--------------------------------------------------------------------------------
/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 |
3 | android {
4 | compileSdkVersion 24
5 | buildToolsVersion "24.0.0"
6 | defaultConfig {
7 | applicationId "com.yuyh.stickyheader"
8 | minSdkVersion 14
9 | targetSdkVersion 24
10 | versionCode 1
11 | versionName "1.0"
12 | }
13 | buildTypes {
14 | release {
15 | minifyEnabled false
16 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17 | }
18 | }
19 | }
20 |
21 | dependencies {
22 | compile fileTree(include: ['*.jar'], dir: 'libs')
23 | compile 'com.android.support:appcompat-v7:24.2.1'
24 | compile 'com.google.code.gson:gson:2.8.0'
25 | }
26 |
--------------------------------------------------------------------------------
/app/proguard-rules.pro:
--------------------------------------------------------------------------------
1 | # Add project specific ProGuard rules here.
2 | # By default, the flags in this file are appended to flags specified
3 | # in D:\AndroidDev\sdk/tools/proguard/proguard-android.txt
4 | # You can edit the include path and order by changing the proguardFiles
5 | # directive in build.gradle.
6 | #
7 | # For more details, see
8 | # http://developer.android.com/guide/developing/tools/proguard.html
9 |
10 | # Add any project specific keep options here:
11 |
12 | # If your project uses WebView with JS, uncomment the following
13 | # and specify the fully qualified class name to the JavaScript interface
14 | # class:
15 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16 | # public *;
17 | #}
18 |
19 | # Uncomment this to preserve the line number information for
20 | # debugging stack traces.
21 | #-keepattributes SourceFile,LineNumberTable
22 |
23 | # If you keep the line number information, uncomment this to
24 | # hide the original source file name.
25 | #-renamesourcefileattribute SourceFile
26 |
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
5 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/app/src/main/java/com/yuyh/stickyheader/Entity.java:
--------------------------------------------------------------------------------
1 | package com.yuyh.stickyheader;
2 |
3 | import java.util.List;
4 |
5 | /**
6 | * @author yuyh.
7 | * @date 2017/1/18.
8 | */
9 |
10 | public class Entity {
11 |
12 | public List rows;
13 |
14 | public static class Row {
15 | public long timestamp;
16 |
17 | public String src;
18 |
19 | public String dest;
20 |
21 | public double amount;
22 |
23 | public boolean isChecked;
24 | }
25 |
26 |
27 | }
28 |
--------------------------------------------------------------------------------
/app/src/main/java/com/yuyh/stickyheader/MainActivity.java:
--------------------------------------------------------------------------------
1 | package com.yuyh.stickyheader;
2 |
3 | import android.os.Bundle;
4 | import android.support.v7.app.AppCompatActivity;
5 | import android.widget.AbsListView;
6 | import android.widget.CheckBox;
7 | import android.widget.CompoundButton;
8 | import android.widget.TextView;
9 | import android.widget.Toast;
10 |
11 | import com.google.gson.Gson;
12 | import com.yuyh.stickyheader.view.StickyHeaderListView;
13 |
14 | import java.math.BigDecimal;
15 | import java.math.RoundingMode;
16 |
17 | public class MainActivity extends AppCompatActivity {
18 |
19 | private StickyHeaderListView mListView;
20 | private SectionAdapter mAdapter;
21 | private CheckBox mCheckAll;
22 |
23 | private boolean isOnLoadMore = false;
24 | private int count = 0;
25 |
26 | @Override
27 | protected void onCreate(Bundle savedInstanceState) {
28 | super.onCreate(savedInstanceState);
29 | setContentView(R.layout.activity_main);
30 |
31 | initListView();
32 |
33 | initChechBox();
34 | }
35 |
36 | private void initListView() {
37 | mListView = (StickyHeaderListView) findViewById(R.id.lv);
38 |
39 | Entity row = new Gson().fromJson(json, Entity.class);
40 |
41 | mListView.setAdapter(mAdapter = new SectionAdapter(this, row.rows));
42 |
43 | mAdapter.setOnValueChangedListener(new OnValueChangeListener() {
44 | @Override
45 | public void onChange(int totalCount, double totalAmount, boolean isCheckAll) {
46 | BigDecimal bd = new BigDecimal(totalAmount).setScale(2, RoundingMode.UP);
47 | ((TextView) findViewById(R.id.tv_desc)).setText(totalCount + "个行程,共" + bd.doubleValue() + "元");
48 | // 防止调用onCheckedChanged
49 | mCheckAll.setOnCheckedChangeListener(null);
50 | mCheckAll.setChecked(isCheckAll);
51 | mCheckAll.setOnCheckedChangeListener(onCheckedChangeListener);
52 | }
53 | });
54 |
55 | mListView.setOnScrollListener(new AbsListView.OnScrollListener() {
56 | @Override
57 | public synchronized void onScrollStateChanged(AbsListView view, int scrollState) {
58 | switch (scrollState) {
59 | // 当不滚动时
60 | case AbsListView.OnScrollListener.SCROLL_STATE_IDLE:
61 | // 判断滚动到底部
62 | if (view.getLastVisiblePosition() == (view.getCount() - 1)) {
63 | if (!isOnLoadMore) {
64 |
65 | if(count >= 3){
66 | Toast.makeText(MainActivity.this, "没有更多数据啦~", Toast.LENGTH_SHORT).show();
67 | return;
68 | }
69 |
70 | count++;
71 |
72 | isOnLoadMore = true;
73 |
74 | Entity row = new Gson().fromJson(json, Entity.class);
75 | mAdapter.addData(row.rows);
76 |
77 | isOnLoadMore = false;
78 | }
79 | }
80 | break;
81 | }
82 | }
83 |
84 | @Override
85 | public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
86 |
87 | }
88 | });
89 | }
90 |
91 | private void initChechBox() {
92 | mCheckAll = (CheckBox) findViewById(R.id.cb_check_all);
93 | mCheckAll.setOnCheckedChangeListener(onCheckedChangeListener);
94 | }
95 |
96 | CompoundButton.OnCheckedChangeListener onCheckedChangeListener = new CompoundButton.OnCheckedChangeListener() {
97 | @Override
98 | public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
99 | mAdapter.setCheckAll(isChecked);
100 | }
101 | };
102 |
103 | String json = "{\n" +
104 | " \"rows\":[\n" +
105 | " {\n" +
106 | " \"timestamp\":1484060400,\n" +
107 | " \"src\":\"杭州-茂源大厦\",\n" +
108 | " \"dest\":\"杭州-高新软件园\",\n" +
109 | " \"amount\":24.01\n" +
110 | " },\n" +
111 | " {\n" +
112 | " \"timestamp\":1483974000,\n" +
113 | " \"src\":\"杭州-茂源大厦\",\n" +
114 | " \"dest\":\"杭州-高新软件园\",\n" +
115 | " \"amount\":24.01\n" +
116 | " },\n" +
117 | " {\n" +
118 | " \"timestamp\":1483887600,\n" +
119 | " \"src\":\"杭州-茂源大厦\",\n" +
120 | " \"dest\":\"杭州-高新软件园\",\n" +
121 | " \"amount\":24.01\n" +
122 | " },\n" +
123 | " {\n" +
124 | " \"timestamp\":1483628400,\n" +
125 | " \"src\":\"杭州-茂源大厦\",\n" +
126 | " \"dest\":\"杭州-高新软件园\",\n" +
127 | " \"amount\":24.01\n" +
128 | " },\n" +
129 | " {\n" +
130 | " \"timestamp\":1481814000,\n" +
131 | " \"src\":\"杭州-阿里巴巴滨江园区\",\n" +
132 | " \"dest\":\"杭州-高新软件园\",\n" +
133 | " \"amount\":25.00\n" +
134 | " },\n" +
135 | " {\n" +
136 | " \"timestamp\":1479222000,\n" +
137 | " \"src\":\"杭州-茂源大厦\",\n" +
138 | " \"dest\":\"杭州-阿里巴巴滨江园区\",\n" +
139 | " \"amount\":28.01\n" +
140 | " },\n" +
141 | " {\n" +
142 | " \"timestamp\":1477407600,\n" +
143 | " \"src\":\"杭州-龙翔桥\",\n" +
144 | " \"dest\":\"杭州-定安路\",\n" +
145 | " \"amount\":19.20\n" +
146 | " },\n" +
147 | " {\n" +
148 | " \"timestamp\":1475039023,\n" +
149 | " \"src\":\"杭州-茂源大厦\",\n" +
150 | " \"dest\":\"杭州-高新软件园\",\n" +
151 | " \"amount\":24.01\n" +
152 | " },\n" +
153 | " {\n" +
154 | " \"timestamp\":1474779823,\n" +
155 | " \"src\":\"杭州-茂源大厦\",\n" +
156 | " \"dest\":\"杭州-高新软件园\",\n" +
157 | " \"amount\":24.01\n" +
158 | " },\n" +
159 | " {\n" +
160 | " \"timestamp\":1474347823,\n" +
161 | " \"src\":\"杭州-武林广场\",\n" +
162 | " \"dest\":\"杭州-西湖文化广场\",\n" +
163 | " \"amount\":24.10\n" +
164 | " },\n" +
165 | " {\n" +
166 | " \"timestamp\":1468991023,\n" +
167 | " \"src\":\"杭州-星光大道\",\n" +
168 | " \"dest\":\"杭州-滨康路\",\n" +
169 | " \"amount\":23.57\n" +
170 | " },\n" +
171 | " {\n" +
172 | " \"timestamp\":1466399143,\n" +
173 | " \"src\":\"杭州-AppStore体验店\",\n" +
174 | " \"dest\":\"杭州-高新软件园\",\n" +
175 | " \"amount\":20\n" +
176 | " },\n" +
177 | " {\n" +
178 | " \"timestamp\":1465967143,\n" +
179 | " \"src\":\"杭州-茂源大厦\",\n" +
180 | " \"dest\":\"杭州-西湖\",\n" +
181 | " \"amount\":81.07\n" +
182 | " },\n" +
183 | " {\n" +
184 | " \"timestamp\":1465362343,\n" +
185 | " \"src\":\"杭州-星光大道\",\n" +
186 | " \"dest\":\"杭州-滨康路\",\n" +
187 | " \"amount\":23.57\n" +
188 | " },\n" +
189 | " {\n" +
190 | " \"timestamp\":1465275943,\n" +
191 | " \"src\":\"杭州-AppStore体验店\",\n" +
192 | " \"dest\":\"杭州-高新软件园\",\n" +
193 | " \"amount\":20\n" +
194 | " },\n" +
195 | " {\n" +
196 | " \"timestamp\":1465103143,\n" +
197 | " \"src\":\"杭州-茂源大厦\",\n" +
198 | " \"dest\":\"杭州-西湖\",\n" +
199 | " \"amount\":81.07\n" +
200 | " },\n" +
201 | " {\n" +
202 | " \"timestamp\":1462424743,\n" +
203 | " \"src\":\"杭州-星光大道\",\n" +
204 | " \"dest\":\"杭州-滨康路\",\n" +
205 | " \"amount\":23.57\n" +
206 | " },\n" +
207 | " {\n" +
208 | " \"timestamp\":1462125943,\n" +
209 | " \"src\":\"杭州-AppStore体验店\",\n" +
210 | " \"dest\":\"杭州-高新软件园\",\n" +
211 | " \"amount\":20\n" +
212 | " },\n" +
213 | " {\n" +
214 | " \"timestamp\":1462035943,\n" +
215 | " \"src\":\"杭州-茂源大厦\",\n" +
216 | " \"dest\":\"杭州-西湖\",\n" +
217 | " \"amount\":81.07\n" +
218 | " }\n" +
219 | " ]\n" +
220 | "}";
221 | }
222 |
--------------------------------------------------------------------------------
/app/src/main/java/com/yuyh/stickyheader/OnValueChangeListener.java:
--------------------------------------------------------------------------------
1 | package com.yuyh.stickyheader;
2 |
3 | /**
4 | * @author yuyh.
5 | * @date 2017/1/18.
6 | */
7 |
8 | public interface OnValueChangeListener {
9 |
10 | void onChange(int totalCount, double totalAmount, boolean isCheckAll);
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/app/src/main/java/com/yuyh/stickyheader/SectionAdapter.java:
--------------------------------------------------------------------------------
1 | package com.yuyh.stickyheader;
2 |
3 | import android.content.Context;
4 | import android.view.LayoutInflater;
5 | import android.view.View;
6 | import android.view.ViewGroup;
7 | import android.widget.CheckBox;
8 | import android.widget.CompoundButton;
9 | import android.widget.TextView;
10 |
11 | import com.yuyh.stickyheader.view.StickyHeaderAdapter;
12 |
13 | import java.text.SimpleDateFormat;
14 | import java.util.ArrayList;
15 | import java.util.Date;
16 | import java.util.Iterator;
17 | import java.util.LinkedHashMap;
18 | import java.util.List;
19 | import java.util.Locale;
20 | import java.util.Map;
21 |
22 | public class SectionAdapter extends StickyHeaderAdapter {
23 |
24 | private Context mContext;
25 | private OnValueChangeListener listener;
26 |
27 | private List entityRows;
28 |
29 | private LinkedHashMap> map = new LinkedHashMap>();
30 |
31 | SimpleDateFormat sdf = new SimpleDateFormat("yyyy年-MM月", Locale.getDefault());
32 | SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm", Locale.getDefault());
33 |
34 | public SectionAdapter(Context context, List entityRows) {
35 | this.mContext = context;
36 | this.entityRows = entityRows;
37 |
38 | addData(entityRows);
39 | }
40 |
41 | /**
42 | * 添加数据,并进行分类
43 | *
44 | * @param list
45 | */
46 | public void addData(List list) {
47 | for (Entity.Row row : list) {
48 |
49 | String head = sdf.format(new Date(row.timestamp * 1000)); // time
50 |
51 | if (map.get(head) == null) {
52 | List newRows = new ArrayList<>();
53 | newRows.add(row);
54 | map.put(head, newRows);
55 | } else {
56 | List newRows = map.get(head);
57 | newRows.add(row);
58 | }
59 | }
60 |
61 | updateValue();
62 | notifyDataSetChanged();
63 | }
64 |
65 | public void setCheckAll(boolean checkAll) {
66 | Iterator iter = map.entrySet().iterator();
67 | while (iter.hasNext()) {
68 | Map.Entry> entry = (Map.Entry>) iter.next();
69 | String key = entry.getKey();
70 | List val = entry.getValue();
71 |
72 | for (Entity.Row row : val) {
73 | row.isChecked = checkAll;
74 | }
75 | }
76 |
77 | updateValue();
78 |
79 | notifyDataSetChanged();
80 | }
81 |
82 | public void setOnValueChangedListener(OnValueChangeListener listener) {
83 | this.listener = listener;
84 | }
85 |
86 | private void updateValue() {
87 | if (listener == null)
88 | return;
89 |
90 | int count = 0;
91 | double amount = 0;
92 | boolean isCheckAll = true;
93 |
94 | Iterator iter = map.entrySet().iterator();
95 | while (iter.hasNext()) {
96 | Map.Entry> entry = (Map.Entry>) iter.next();
97 | String key = entry.getKey();
98 | List val = entry.getValue();
99 |
100 | for (Entity.Row row : val) {
101 | if (row.isChecked) {
102 | count++;
103 | amount += row.amount;
104 | } else {
105 | isCheckAll = false;
106 | }
107 | }
108 | }
109 |
110 | listener.onChange(count, amount, isCheckAll);
111 | }
112 |
113 | @Override
114 | public int sectionCounts() {
115 | return map.keySet().toArray().length;
116 | }
117 |
118 | @Override
119 | public int rowCounts(int section) {
120 | if (section < 0)
121 | return 0;
122 |
123 | Object[] key = map.keySet().toArray();
124 |
125 |
126 | return map.get(key[section]).size();
127 | }
128 |
129 | @Override
130 | public View getRowView(int section, int row, View convertView, ViewGroup parent) {
131 | View view = LayoutInflater.from(mContext).inflate(R.layout.item_row, null);
132 |
133 | Object[] keys = map.keySet().toArray();
134 | String key = (String) keys[section];
135 | final Entity.Row item = map.get(key).get(row);
136 |
137 | ((TextView) view.findViewById(R.id.time)).setText(sdf1.format(new Date(item.timestamp * 1000)));
138 | ((TextView) view.findViewById(R.id.src)).setText(item.src);
139 | ((TextView) view.findViewById(R.id.dest)).setText(item.dest);
140 | ((TextView) view.findViewById(R.id.amount)).setText(item.amount + "");
141 | final CheckBox checkBox = ((CheckBox) view.findViewById(R.id.cb));
142 | checkBox.setChecked(item.isChecked);
143 | checkBox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
144 | @Override
145 | public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
146 | item.isChecked = isChecked;
147 | updateValue();
148 | }
149 | });
150 |
151 | view.setOnClickListener(new View.OnClickListener() {
152 | @Override
153 | public void onClick(View v) {
154 | checkBox.setChecked(!checkBox.isChecked());
155 | }
156 | });
157 |
158 | return view;
159 | }
160 |
161 | @Override
162 | public Object getRowItem(int section, int row) {
163 | if (section < 0)
164 | return null;
165 |
166 | Object[] key = map.keySet().toArray();
167 |
168 | return map.get((String) key[section]).get(row);
169 | }
170 |
171 | @Override
172 | public View getSectionHeaderView(int section, View convertView, ViewGroup parent) {
173 | View view = LayoutInflater.from(mContext).inflate(R.layout.item_header, null);
174 |
175 | Object[] keys = map.keySet().toArray();
176 |
177 | String key = (String) keys[section];
178 |
179 | ((TextView) view.findViewById(R.id.month)).setText(key.split("-")[1]);
180 |
181 | return view;
182 | }
183 |
184 | @Override
185 | public boolean hasSectionHeaderView(int section) {
186 | return true;
187 | }
188 | }
--------------------------------------------------------------------------------
/app/src/main/java/com/yuyh/stickyheader/view/StickyHeaderAdapter.java:
--------------------------------------------------------------------------------
1 | package com.yuyh.stickyheader.view;
2 |
3 | import android.view.View;
4 | import android.view.ViewGroup;
5 | import android.widget.AdapterView;
6 | import android.widget.AdapterView.OnItemClickListener;
7 | import android.widget.BaseAdapter;
8 |
9 | public abstract class StickyHeaderAdapter extends BaseAdapter implements OnItemClickListener {
10 |
11 | private int mCount = -1;
12 |
13 | public abstract int sectionCounts();
14 |
15 | public abstract int rowCounts(int section);
16 |
17 | public abstract View getRowView(int section, int row, View convertView, ViewGroup parent);
18 |
19 | public View getSectionHeaderView(int section, View convertView, ViewGroup parent) {
20 | return null;
21 | }
22 |
23 | public abstract Object getRowItem(int section, int row);
24 |
25 | public boolean hasSectionHeaderView(int section) {
26 | return false;
27 | }
28 |
29 | public Object getSectionHeaderItem(int section) {
30 | return null;
31 | }
32 |
33 | public int getRowViewTypeCount() {
34 | return 1;
35 | }
36 |
37 | public int getSectionHeaderViewTypeCount() {
38 | return 1;
39 | }
40 |
41 | /**
42 | * Must return a value between 0 and getRowViewTypeCount() (excluded)
43 | */
44 | public int getRowItemViewType(int section, int row) {
45 | return 0;
46 | }
47 |
48 | /**
49 | * Must return a value between 0 and getSectionHeaderViewTypeCount() (excluded, if > 0)
50 | */
51 | public int getSectionHeaderItemViewType(int section) {
52 | return 0;
53 | }
54 |
55 | @Override
56 | /**
57 | * Dispatched to call onRowItemClick
58 | */
59 | public final void onItemClick(AdapterView> parent, View view, int position, long id) {
60 | onRowItemClick(parent, view, getSection(position), getRowInSection(position), id);
61 | }
62 |
63 | public void onRowItemClick(AdapterView> parent, View view, int section, int row, long id) {
64 |
65 | }
66 |
67 | @Override
68 | /**
69 | * Counts the amount of cells = headers + rows
70 | */
71 | public final int getCount() {
72 | if (mCount < 0) {
73 | mCount = numberOfCellsBeforeSection(sectionCounts());
74 | }
75 | return mCount;
76 | }
77 |
78 | @Override
79 | public boolean isEmpty() {
80 | return getCount() == 0;
81 | }
82 |
83 | @Override
84 | /**
85 | * Dispatched to call getRowItem or getSectionHeaderItem
86 | */
87 | public final Object getItem(int position) {
88 | int section = getSection(position);
89 | if (isSectionHeader(position)) {
90 | if (hasSectionHeaderView(section)) {
91 | return getSectionHeaderItem(section);
92 | }
93 | return null;
94 | }
95 | return getRowItem(section, getRowInSection(position));
96 | }
97 |
98 | @Override
99 | public long getItemId(int position) {
100 | return position;
101 | }
102 |
103 | @Override
104 | /**
105 | * Dispatched to call getRowView or getSectionHeaderView
106 | */
107 | public final View getView(int position, View convertView, ViewGroup parent) {
108 | int section = getSection(position);
109 | if (isSectionHeader(position)) {
110 | if (hasSectionHeaderView(section)) {
111 | return getSectionHeaderView(section, convertView, parent);
112 | }
113 | return null;
114 | }
115 | return getRowView(section, getRowInSection(position), convertView, parent);
116 | }
117 |
118 | /**
119 | * Returns the section number of the indicated cell
120 | */
121 | protected int getSection(int position) {
122 | int section = 0;
123 | int cellCounter = 0;
124 | while (cellCounter <= position && section <= sectionCounts()) {
125 | cellCounter += numberOfCellsInSection(section);
126 | section++;
127 | }
128 | return section - 1;
129 | }
130 |
131 | /**
132 | * Returns the row index of the indicated cell Should not be call with
133 | * positions directing to section headers
134 | */
135 | protected int getRowInSection(int position) {
136 | int section = getSection(position);
137 | int row = position - numberOfCellsBeforeSection(section);
138 | if (hasSectionHeaderView(section)) {
139 | return row - 1;
140 | } else {
141 | return row;
142 | }
143 | }
144 |
145 | /**
146 | * Returns true if the cell at this index is a section header
147 | */
148 | protected boolean isSectionHeader(int position) {
149 | int section = getSection(position);
150 | return hasSectionHeaderView(section) && numberOfCellsBeforeSection(section) == position;
151 | }
152 |
153 | /**
154 | * Returns the number of cells (= headers + rows) before the indicated
155 | * section
156 | */
157 | protected int numberOfCellsBeforeSection(int section) {
158 | int count = 0;
159 | for (int i = 0; i < Math.min(sectionCounts(), section); i++) {
160 | count += numberOfCellsInSection(i);
161 | }
162 | return count;
163 | }
164 |
165 | private int numberOfCellsInSection(int section) {
166 | return rowCounts(section) + (hasSectionHeaderView(section) ? 1 : 0);
167 | }
168 |
169 | @Override
170 | public void notifyDataSetChanged() {
171 | mCount = numberOfCellsBeforeSection(sectionCounts());
172 | super.notifyDataSetChanged();
173 | }
174 |
175 | @Override
176 | public void notifyDataSetInvalidated() {
177 | mCount = numberOfCellsBeforeSection(sectionCounts());
178 | super.notifyDataSetInvalidated();
179 | }
180 |
181 | @Override
182 | /**
183 | * Dispatched to call getRowItemViewType or getSectionHeaderItemViewType
184 | */
185 | public final int getItemViewType(int position) {
186 | int section = getSection(position);
187 | if (isSectionHeader(position)) {
188 | return getRowViewTypeCount() + getSectionHeaderItemViewType(section);
189 | } else {
190 | return getRowItemViewType(section, getRowInSection(position));
191 | }
192 | }
193 |
194 | @Override
195 | /**
196 | * Dispatched to call getRowViewTypeCount and getSectionHeaderViewTypeCount
197 | */
198 | public final int getViewTypeCount() {
199 | return getRowViewTypeCount() + getSectionHeaderViewTypeCount();
200 | }
201 |
202 | @Override
203 | /**
204 | * By default, disables section headers
205 | */
206 | public boolean isEnabled(int position) {
207 | return (disableHeaders() || !isSectionHeader(position)) && isRowEnabled(getSection(position), getRowInSection(position));
208 | }
209 |
210 | public boolean disableHeaders() {
211 | return false;
212 | }
213 |
214 | public boolean isRowEnabled(int section, int row) {
215 | return true;
216 | }
217 | }
218 |
--------------------------------------------------------------------------------
/app/src/main/java/com/yuyh/stickyheader/view/StickyHeaderListView.java:
--------------------------------------------------------------------------------
1 | package com.yuyh.stickyheader.view;
2 |
3 | import android.content.Context;
4 | import android.util.AttributeSet;
5 | import android.util.TypedValue;
6 | import android.view.Gravity;
7 | import android.view.View;
8 | import android.view.animation.AlphaAnimation;
9 | import android.widget.AbsListView;
10 | import android.widget.AdapterView;
11 | import android.widget.ListView;
12 | import android.widget.RelativeLayout;
13 |
14 | public class StickyHeaderListView extends RelativeLayout {
15 |
16 | // TODO: Handle listViews with fast scroll
17 | // TODO: See if there are methods to dispatch to mListView
18 |
19 | private static final int FADE_DELAY = 1000;
20 | private static final int FADE_DURATION = 2000;
21 |
22 | private InternalListView mListView;
23 | private StickyHeaderAdapter mAdapter;
24 | private RelativeLayout mHeader;
25 | private View mHeaderConvertView;
26 | private AbsListView.OnScrollListener mExternalOnScrollListener;
27 |
28 | public StickyHeaderListView(Context context) {
29 | this(context, null);
30 | }
31 |
32 | public StickyHeaderListView(Context context, AttributeSet attrs) {
33 | super(context, attrs);
34 | init(context, attrs);
35 | }
36 |
37 | private void init(Context context, AttributeSet attrs) {
38 | mListView = new InternalListView(getContext(), attrs);
39 | LayoutParams listParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
40 | listParams.addRule(ALIGN_PARENT_TOP);
41 | mListView.setLayoutParams(listParams);
42 | mListView.setOnScrollListener(new HeaderListViewOnScrollListener());
43 | mListView.setVerticalScrollBarEnabled(true);
44 | mListView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
45 | @Override
46 | public void onItemClick(AdapterView> parent, View view, int position, long id) {
47 | if (mAdapter != null) {
48 | mAdapter.onItemClick(parent, view, position, id);
49 | }
50 | }
51 | });
52 | addView(mListView);
53 |
54 | mHeader = new RelativeLayout(getContext());
55 | LayoutParams headerParams = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
56 | headerParams.addRule(ALIGN_PARENT_TOP);
57 | mHeader.setLayoutParams(headerParams);
58 | mHeader.setGravity(Gravity.BOTTOM);
59 | addView(mHeader);
60 | }
61 |
62 | public void setAdapter(StickyHeaderAdapter adapter) {
63 | mAdapter = adapter;
64 | mListView.setAdapter(adapter);
65 | }
66 |
67 | public void setOnScrollListener(AbsListView.OnScrollListener l) {
68 | mExternalOnScrollListener = l;
69 | }
70 |
71 | private class HeaderListViewOnScrollListener implements AbsListView.OnScrollListener {
72 |
73 | private int previousFirstVisibleItem = -1;
74 | private int direction = 0;
75 | private int actualSection = 0;
76 | private boolean scrollingStart = false;
77 | private boolean doneMeasuring = false;
78 | private int lastResetSection = -1;
79 | private int nextH;
80 | private int prevH;
81 | private View previous;
82 | private View next;
83 | private AlphaAnimation fadeOut = new AlphaAnimation(1f, 0f);
84 | private boolean noHeaderUpToHeader = false;
85 | private boolean didScroll = false;
86 |
87 | @Override
88 | public void onScrollStateChanged(AbsListView view, int scrollState) {
89 | if (mExternalOnScrollListener != null) {
90 | mExternalOnScrollListener.onScrollStateChanged(view, scrollState);
91 | }
92 | didScroll = true;
93 | }
94 |
95 | @Override
96 | public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
97 | if (mExternalOnScrollListener != null) {
98 | mExternalOnScrollListener.onScroll(view, firstVisibleItem, visibleItemCount, totalItemCount);
99 | }
100 |
101 | if (!didScroll) {
102 | return;
103 | }
104 |
105 | firstVisibleItem -= mListView.getHeaderViewsCount();
106 | if (firstVisibleItem < 0) {
107 | mHeader.removeAllViews();
108 | return;
109 | }
110 |
111 | if (visibleItemCount > 0 && firstVisibleItem == 0 && mHeader.getChildAt(0) == null) {
112 | addSectionHeader(0);
113 | lastResetSection = 0;
114 | }
115 |
116 | int realFirstVisibleItem = getRealFirstVisibleItem(firstVisibleItem, visibleItemCount);
117 | if (totalItemCount > 0 && previousFirstVisibleItem != realFirstVisibleItem) {
118 | direction = realFirstVisibleItem - previousFirstVisibleItem;
119 |
120 | actualSection = mAdapter.getSection(realFirstVisibleItem);
121 |
122 | boolean currIsHeader = mAdapter.isSectionHeader(realFirstVisibleItem);
123 | boolean prevHasHeader = mAdapter.hasSectionHeaderView(actualSection - 1);
124 | boolean nextHasHeader = mAdapter.hasSectionHeaderView(actualSection + 1);
125 | boolean currHasHeader = mAdapter.hasSectionHeaderView(actualSection);
126 | boolean currIsLast = mAdapter.getRowInSection(realFirstVisibleItem) == mAdapter.rowCounts(actualSection) - 1;
127 | boolean prevHasRows = mAdapter.rowCounts(actualSection - 1) > 0;
128 | boolean currIsFirst = mAdapter.getRowInSection(realFirstVisibleItem) == 0;
129 |
130 | boolean needScrolling = currIsFirst && !currHasHeader && prevHasHeader && realFirstVisibleItem != firstVisibleItem;
131 | boolean needNoHeaderUpToHeader = currIsLast && currHasHeader && !nextHasHeader && realFirstVisibleItem == firstVisibleItem && Math.abs(mListView.getChildAt(0).getTop()) >= mListView.getChildAt(0).getHeight() / 2;
132 |
133 | noHeaderUpToHeader = false;
134 | if (currIsHeader && !prevHasHeader && firstVisibleItem >= 0) {
135 | resetHeader(direction < 0 ? actualSection - 1 : actualSection);
136 | } else if ((currIsHeader && firstVisibleItem > 0) || needScrolling) {
137 | if (!prevHasRows) {
138 | resetHeader(actualSection - 1);
139 | }
140 | startScrolling();
141 | } else if (needNoHeaderUpToHeader) {
142 | noHeaderUpToHeader = true;
143 | } else if (lastResetSection != actualSection) {
144 | resetHeader(actualSection);
145 | }
146 |
147 | previousFirstVisibleItem = realFirstVisibleItem;
148 | }
149 |
150 | if (scrollingStart) {
151 | int scrolled = realFirstVisibleItem >= firstVisibleItem ? mListView.getChildAt(realFirstVisibleItem - firstVisibleItem).getTop() : 0;
152 |
153 | if (!doneMeasuring) {
154 | setMeasurements(realFirstVisibleItem, firstVisibleItem);
155 | }
156 |
157 | int headerH = doneMeasuring ? (prevH - nextH) * direction * Math.abs(scrolled) / (direction < 0 ? nextH : prevH) + (direction > 0 ? nextH : prevH) : 0;
158 |
159 | mHeader.scrollTo(0, -Math.min(0, scrolled - headerH));
160 | if (doneMeasuring && headerH != mHeader.getLayoutParams().height) {
161 | LayoutParams p = (LayoutParams) (direction < 0 ? next.getLayoutParams() : previous.getLayoutParams());
162 | p.topMargin = headerH - p.height;
163 | mHeader.getLayoutParams().height = headerH;
164 | mHeader.requestLayout();
165 | }
166 | }
167 |
168 | if (noHeaderUpToHeader) {
169 | if (lastResetSection != actualSection) {
170 | addSectionHeader(actualSection);
171 | lastResetSection = actualSection + 1;
172 | }
173 | mHeader.scrollTo(0, mHeader.getLayoutParams().height - (mListView.getChildAt(0).getHeight() + mListView.getChildAt(0).getTop()));
174 | }
175 | }
176 |
177 | private void startScrolling() {
178 | scrollingStart = true;
179 | doneMeasuring = false;
180 | lastResetSection = -1;
181 | }
182 |
183 | private void resetHeader(int section) {
184 | scrollingStart = false;
185 | addSectionHeader(section);
186 | mHeader.requestLayout();
187 | lastResetSection = section;
188 | }
189 |
190 | private void setMeasurements(int realFirstVisibleItem, int firstVisibleItem) {
191 |
192 | if (direction > 0) {
193 | nextH = realFirstVisibleItem >= firstVisibleItem ? mListView.getChildAt(realFirstVisibleItem - firstVisibleItem).getMeasuredHeight() : 0;
194 | }
195 |
196 | previous = mHeader.getChildAt(0);
197 | prevH = previous != null ? previous.getMeasuredHeight() : mHeader.getHeight();
198 |
199 | if (direction < 0) {
200 | if (lastResetSection != actualSection - 1) {
201 | addSectionHeader(Math.max(0, actualSection - 1));
202 | next = mHeader.getChildAt(0);
203 | }
204 | nextH = mHeader.getChildCount() > 0 ? mHeader.getChildAt(0).getMeasuredHeight() : 0;
205 | mHeader.scrollTo(0, prevH);
206 | }
207 | doneMeasuring = previous != null && prevH > 0 && nextH > 0;
208 | }
209 |
210 | private void addSectionHeader(int actualSection) {
211 | View previousHeader = mHeader.getChildAt(0);
212 | if (previousHeader != null) {
213 | mHeader.removeViewAt(0);
214 | }
215 |
216 | if (mAdapter.hasSectionHeaderView(actualSection)) {
217 | mHeaderConvertView = mAdapter.getSectionHeaderView(actualSection, mHeaderConvertView, mHeader);
218 | mHeaderConvertView.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT));
219 |
220 | mHeaderConvertView.measure(MeasureSpec.makeMeasureSpec(mHeader.getWidth(), MeasureSpec.EXACTLY), MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
221 |
222 | mHeader.getLayoutParams().height = mHeaderConvertView.getMeasuredHeight();
223 | mHeaderConvertView.scrollTo(0, 0);
224 | mHeader.scrollTo(0, 0);
225 | mHeader.addView(mHeaderConvertView, 0);
226 | } else {
227 | mHeader.getLayoutParams().height = 0;
228 | mHeader.scrollTo(0, 0);
229 | }
230 | }
231 |
232 | private int getRealFirstVisibleItem(int firstVisibleItem, int visibleItemCount) {
233 | if (visibleItemCount == 0) {
234 | return -1;
235 | }
236 | int relativeIndex = 0, totalHeight = mListView.getChildAt(0).getTop();
237 | for (relativeIndex = 0; relativeIndex < visibleItemCount && totalHeight < mHeader.getHeight(); relativeIndex++) {
238 | totalHeight += mListView.getChildAt(relativeIndex).getHeight();
239 | }
240 | int realFVI = Math.max(firstVisibleItem, firstVisibleItem + relativeIndex - 1);
241 | return realFVI;
242 | }
243 | }
244 |
245 | public ListView getListView() {
246 | return mListView;
247 | }
248 |
249 | public void addHeaderView(View v) {
250 | mListView.addHeaderView(v);
251 | }
252 |
253 | private float dpToPx(float dp) {
254 | return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, getContext().getResources().getDisplayMetrics());
255 | }
256 |
257 | protected class InternalListView extends ListView {
258 |
259 | public InternalListView(Context context, AttributeSet attrs) {
260 | super(context, attrs);
261 | }
262 |
263 | @Override
264 | protected int computeVerticalScrollExtent() {
265 | return super.computeVerticalScrollExtent();
266 | }
267 |
268 | @Override
269 | protected int computeVerticalScrollOffset() {
270 | return super.computeVerticalScrollOffset();
271 | }
272 |
273 | @Override
274 | protected int computeVerticalScrollRange() {
275 | return super.computeVerticalScrollRange();
276 | }
277 | }
278 | }
279 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/scrollbar.9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/drawable/scrollbar.9.png
--------------------------------------------------------------------------------
/app/src/main/res/drawable/selector_bg_item.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/selector_checkbox.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/activity_main.xml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
12 |
13 |
21 |
22 |
29 |
30 |
42 |
43 |
44 |
45 |
50 |
51 |
56 |
57 |
65 |
66 |
73 |
74 |
81 |
82 |
83 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_header.xml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
14 |
15 |
--------------------------------------------------------------------------------
/app/src/main/res/layout/item_row.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
8 |
15 |
16 |
25 |
26 |
31 |
32 |
40 |
41 |
49 |
50 |
51 |
52 |
59 |
60 |
69 |
70 |
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/btn_checked.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-xhdpi/btn_checked.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/btn_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-xhdpi/btn_normal.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_dest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-xhdpi/ic_dest.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xhdpi/ic_src.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-xhdpi/ic_src.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 | #ECECEC
8 |
9 |
--------------------------------------------------------------------------------
/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | 发票
3 |
4 |
--------------------------------------------------------------------------------
/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | repositories {
5 | jcenter()
6 | }
7 | dependencies {
8 | classpath 'com.android.tools.build:gradle:2.2.0'
9 |
10 | // NOTE: Do not place your application dependencies here; they belong
11 | // in the individual module build.gradle files
12 | }
13 | }
14 |
15 | allprojects {
16 | repositories {
17 | jcenter()
18 | }
19 | }
20 |
21 | task clean(type: Delete) {
22 | delete rootProject.buildDir
23 | }
24 |
--------------------------------------------------------------------------------
/gradle.properties:
--------------------------------------------------------------------------------
1 | # Project-wide Gradle settings.
2 |
3 | # IDE (e.g. Android Studio) users:
4 | # Gradle settings configured through the IDE *will override*
5 | # any settings specified in this file.
6 |
7 | # For more details on how to configure your build environment visit
8 | # http://www.gradle.org/docs/current/userguide/build_environment.html
9 |
10 | # Specifies the JVM arguments used for the daemon process.
11 | # The setting is particularly useful for tweaking memory settings.
12 | org.gradle.jvmargs=-Xmx1536m
13 |
14 | # When configured, Gradle will run in incubating parallel mode.
15 | # This option should only be used with decoupled projects. More details, visit
16 | # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 | # org.gradle.parallel=true
18 |
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Jan 18 09:51:41 CST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
7 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
10 | DEFAULT_JVM_OPTS=""
11 |
12 | APP_NAME="Gradle"
13 | APP_BASE_NAME=`basename "$0"`
14 |
15 | # Use the maximum available, or set MAX_FD != -1 to use that value.
16 | MAX_FD="maximum"
17 |
18 | warn ( ) {
19 | echo "$*"
20 | }
21 |
22 | die ( ) {
23 | echo
24 | echo "$*"
25 | echo
26 | exit 1
27 | }
28 |
29 | # OS specific support (must be 'true' or 'false').
30 | cygwin=false
31 | msys=false
32 | darwin=false
33 | case "`uname`" in
34 | CYGWIN* )
35 | cygwin=true
36 | ;;
37 | Darwin* )
38 | darwin=true
39 | ;;
40 | MINGW* )
41 | msys=true
42 | ;;
43 | esac
44 |
45 | # Attempt to set APP_HOME
46 | # Resolve links: $0 may be a link
47 | PRG="$0"
48 | # Need this for relative symlinks.
49 | while [ -h "$PRG" ] ; do
50 | ls=`ls -ld "$PRG"`
51 | link=`expr "$ls" : '.*-> \(.*\)$'`
52 | if expr "$link" : '/.*' > /dev/null; then
53 | PRG="$link"
54 | else
55 | PRG=`dirname "$PRG"`"/$link"
56 | fi
57 | done
58 | SAVED="`pwd`"
59 | cd "`dirname \"$PRG\"`/" >/dev/null
60 | APP_HOME="`pwd -P`"
61 | cd "$SAVED" >/dev/null
62 |
63 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
64 |
65 | # Determine the Java command to use to start the JVM.
66 | if [ -n "$JAVA_HOME" ] ; then
67 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
68 | # IBM's JDK on AIX uses strange locations for the executables
69 | JAVACMD="$JAVA_HOME/jre/sh/java"
70 | else
71 | JAVACMD="$JAVA_HOME/bin/java"
72 | fi
73 | if [ ! -x "$JAVACMD" ] ; then
74 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
75 |
76 | Please set the JAVA_HOME variable in your environment to match the
77 | location of your Java installation."
78 | fi
79 | else
80 | JAVACMD="java"
81 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
82 |
83 | Please set the JAVA_HOME variable in your environment to match the
84 | location of your Java installation."
85 | fi
86 |
87 | # Increase the maximum file descriptors if we can.
88 | if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
89 | MAX_FD_LIMIT=`ulimit -H -n`
90 | if [ $? -eq 0 ] ; then
91 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
92 | MAX_FD="$MAX_FD_LIMIT"
93 | fi
94 | ulimit -n $MAX_FD
95 | if [ $? -ne 0 ] ; then
96 | warn "Could not set maximum file descriptor limit: $MAX_FD"
97 | fi
98 | else
99 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
100 | fi
101 | fi
102 |
103 | # For Darwin, add options to specify how the application appears in the dock
104 | if $darwin; then
105 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
106 | fi
107 |
108 | # For Cygwin, switch paths to Windows format before running java
109 | if $cygwin ; then
110 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
111 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
112 | JAVACMD=`cygpath --unix "$JAVACMD"`
113 |
114 | # We build the pattern for arguments to be converted via cygpath
115 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
116 | SEP=""
117 | for dir in $ROOTDIRSRAW ; do
118 | ROOTDIRS="$ROOTDIRS$SEP$dir"
119 | SEP="|"
120 | done
121 | OURCYGPATTERN="(^($ROOTDIRS))"
122 | # Add a user-defined pattern to the cygpath arguments
123 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
124 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
125 | fi
126 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
127 | i=0
128 | for arg in "$@" ; do
129 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
130 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
131 |
132 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
133 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
134 | else
135 | eval `echo args$i`="\"$arg\""
136 | fi
137 | i=$((i+1))
138 | done
139 | case $i in
140 | (0) set -- ;;
141 | (1) set -- "$args0" ;;
142 | (2) set -- "$args0" "$args1" ;;
143 | (3) set -- "$args0" "$args1" "$args2" ;;
144 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
145 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
146 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
147 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
148 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
149 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
150 | esac
151 | fi
152 |
153 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
154 | function splitJvmOpts() {
155 | JVM_OPTS=("$@")
156 | }
157 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
158 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
159 |
160 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
161 |
--------------------------------------------------------------------------------
/gradlew.bat:
--------------------------------------------------------------------------------
1 | @if "%DEBUG%" == "" @echo off
2 | @rem ##########################################################################
3 | @rem
4 | @rem Gradle startup script for Windows
5 | @rem
6 | @rem ##########################################################################
7 |
8 | @rem Set local scope for the variables with windows NT shell
9 | if "%OS%"=="Windows_NT" setlocal
10 |
11 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
12 | set DEFAULT_JVM_OPTS=
13 |
14 | set DIRNAME=%~dp0
15 | if "%DIRNAME%" == "" set DIRNAME=.
16 | set APP_BASE_NAME=%~n0
17 | set APP_HOME=%DIRNAME%
18 |
19 | @rem Find java.exe
20 | if defined JAVA_HOME goto findJavaFromJavaHome
21 |
22 | set JAVA_EXE=java.exe
23 | %JAVA_EXE% -version >NUL 2>&1
24 | if "%ERRORLEVEL%" == "0" goto init
25 |
26 | echo.
27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
28 | echo.
29 | echo Please set the JAVA_HOME variable in your environment to match the
30 | echo location of your Java installation.
31 |
32 | goto fail
33 |
34 | :findJavaFromJavaHome
35 | set JAVA_HOME=%JAVA_HOME:"=%
36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe
37 |
38 | if exist "%JAVA_EXE%" goto init
39 |
40 | echo.
41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
42 | echo.
43 | echo Please set the JAVA_HOME variable in your environment to match the
44 | echo location of your Java installation.
45 |
46 | goto fail
47 |
48 | :init
49 | @rem Get command-line arguments, handling Windowz variants
50 |
51 | if not "%OS%" == "Windows_NT" goto win9xME_args
52 | if "%@eval[2+2]" == "4" goto 4NT_args
53 |
54 | :win9xME_args
55 | @rem Slurp the command line arguments.
56 | set CMD_LINE_ARGS=
57 | set _SKIP=2
58 |
59 | :win9xME_args_slurp
60 | if "x%~1" == "x" goto execute
61 |
62 | set CMD_LINE_ARGS=%*
63 | goto execute
64 |
65 | :4NT_args
66 | @rem Get arguments from the 4NT Shell from JP Software
67 | set CMD_LINE_ARGS=%$
68 |
69 | :execute
70 | @rem Setup the command line
71 |
72 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
73 |
74 | @rem Execute Gradle
75 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
76 |
77 | :end
78 | @rem End local scope for the variables with windows NT shell
79 | if "%ERRORLEVEL%"=="0" goto mainEnd
80 |
81 | :fail
82 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
83 | rem the _cmd.exe /c_ return code!
84 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
85 | exit /b 1
86 |
87 | :mainEnd
88 | if "%OS%"=="Windows_NT" endlocal
89 |
90 | :omega
91 |
--------------------------------------------------------------------------------
/screenshot/screenshot.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/smuyyh/StickyHeaderListView/50c6e6942a00b0ffe8eeeebcad54d54d8097767b/screenshot/screenshot.gif
--------------------------------------------------------------------------------
/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------