-
Notifications
You must be signed in to change notification settings - Fork 1
/
HotelOrderListActivity.java
248 lines (214 loc) · 7.97 KB
/
HotelOrderListActivity.java
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
package com.tudaidai.tuantrip;
import android.content.Intent;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.Gravity;
import android.view.View;
import android.widget.AbsListView;
import android.widget.AbsListView.OnScrollListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.LinearLayout;
import android.widget.LinearLayout.LayoutParams;
import android.widget.ListView;
import android.widget.ProgressBar;
import android.widget.TextView;
import android.widget.Toast;
import com.tudaidai.tuantrip.app.LoadableListActivity;
import com.tudaidai.tuantrip.app.TuanTripApp;
import com.tudaidai.tuantrip.types.HotelOrder;
import com.tudaidai.tuantrip.types.HotelOrderListResult;
import com.tudaidai.tuantrip.util.NotificationsUtil;
import com.tudaidai.tuantrip.widget.HotelOrderListAdapter;
public class HotelOrderListActivity extends LoadableListActivity {
static final boolean DEBUG = TuanTripSettings.DEBUG;
static final String TAG = "HotelOrderListActivity";
public static final int OPTION_ALL = 0;
public static final int OPTION_SUB = 1;
public static final int OPTION_CHULI = 2;
public static final int OPTION_QUEREN = 3;
public static final int OPTION_PAID = 4;
public static final int OPTION_QUXIAO = 5;
public static final int REQUEST_CODE = 1;
public static final String PAGE_NUM = "15";
public static final String EXTRA_OPTION = "com.tudaidai.tuantrip.HotelOrderListActivity.OPTION";
private int option;
private HotelOrderListAdapter mListAdapter;
private ListView mListView;
private HotelOrderListResult orderResult;
private int lastItem = 0;
LinearLayout loadingLayout;
private volatile boolean isFinish = true;
private LayoutParams mLayoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT);
private LayoutParams FFlayoutParams = new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.FILL_PARENT,
LinearLayout.LayoutParams.FILL_PARENT);
private void ensureUi(HotelOrderListResult paramOrders) {
if (orderResult == null) {
if (paramOrders.mGroup.size() != 0) {
orderResult = paramOrders;
if (orderResult != null
&& orderResult.mGroup.size() == orderResult.getTotla()) {
mListView.removeFooterView(loadingLayout);
}
mListAdapter.setGroup(orderResult.mGroup);
} else {
setEmptyView();
}
} else {
for (HotelOrder order : paramOrders.mGroup) {
orderResult.mGroup.add(order);
}
mListView.removeFooterView(loadingLayout);
mListAdapter.notifyDataSetChanged();
}
}
protected void onCreate(Bundle bundle) {
if (DEBUG)
Log.d(TAG, "onCreate");
super.onCreate(bundle);
mListView = getListView();
mListAdapter = new HotelOrderListAdapter(this);
addLoadView();
mListView.setAdapter(mListAdapter);
mListView.setBackgroundResource(R.color.scroll_bk);
mListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int i,
long id) {
HotelOrder order = (HotelOrder) mListAdapter.getItem(i);
Intent intent = new Intent(HotelOrderListActivity.this,
HotelOrderDetailActivity.class);
intent.putExtra(HotelOrderDetailActivity.EXTRA_ORDER, order);
startActivityForResult(intent, REQUEST_CODE);
}
});
option = getIntent().getExtras().getInt(EXTRA_OPTION);
String[] as = new String[1];
as[0] = new Integer(option).toString();
new OrderTask().execute(as);
}
private void addLoadView() {
LinearLayout layout = new LinearLayout(this);
layout.setOrientation(LinearLayout.HORIZONTAL);
ProgressBar progressBar = new ProgressBar(this);
// progressBar.setIndeterminateDrawable(getResources().getDrawable(R.drawable.progress));
progressBar.setPadding(0, 0, 15, 0);
layout.addView(progressBar, mLayoutParams);
TextView textView = new TextView(this);
textView.setText("加载中...");
textView.setGravity(Gravity.CENTER_VERTICAL);
layout.addView(textView, FFlayoutParams);
layout.setGravity(Gravity.CENTER);
// 设置ListView的页脚layout
loadingLayout = new LinearLayout(this);
loadingLayout.addView(layout, mLayoutParams);
loadingLayout.setGravity(Gravity.CENTER);
mListView.addFooterView(loadingLayout);
mListView.setOnScrollListener(new OnScrollListener() {
@Override
public void onScroll(AbsListView view, int firstVisibleItem,
int visibleItemCount, int totalItemCount) {
if (!isFinish)
return;
if (orderResult == null)
return;
if (orderResult != null
&& orderResult.mGroup.size() != orderResult.getTotla()
&& mListView.getFooterViewsCount() == 0) {
mListView.addFooterView(loadingLayout);
}
if (DEBUG)
Log.d(TAG, "Scroll>>>first: " + firstVisibleItem
+ ", visible: " + visibleItemCount + ", total: "
+ totalItemCount);
lastItem = firstVisibleItem + visibleItemCount - 1;
if (DEBUG)
Log.d(TAG, "Scroll>>>lastItem:" + lastItem);
if (orderResult.mGroup.size() != orderResult.getTotla()) {
if (firstVisibleItem + visibleItemCount == totalItemCount) {
String[] as = new String[1];
as[0] = new Integer(option).toString();
new OrderTask().execute(as);
}
}
}
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
// if (lastItem == orderResult.mGroup.size() && scrollState ==
// OnScrollListener.SCROLL_STATE_IDLE)
// {
// if(DEBUG)
// Log.d(TAG,"ScrollStateChanged>>>state:"+scrollState+"lastItem:"
// + lastItem);
// }
}
});
}
class OrderTask extends AsyncTask<String, Void, HotelOrderListResult> {
private static final String TAG = "OrderTask";
private Exception mReason;
public OrderTask() {
}
protected HotelOrderListResult doInBackground(
String... paramArrayOfString) {
if (DEBUG)
Log.d(TAG, "doInBackground()");
HotelOrderListResult orderResult = null;
try {
TuanTripApp localTuanTripApp = ((TuanTrip) HotelOrderListActivity.this
.getApplication()).getTuanTripApp();
orderResult = localTuanTripApp.getHotelOrders(
paramArrayOfString[0],
new Integer(lastItem + 1).toString(), PAGE_NUM);
if (DEBUG)
Log.d(TAG, "doInBackground() over");
} catch (Exception localException) {
this.mReason = localException;
orderResult = null;
}
return orderResult;
}
protected void onPostExecute(HotelOrderListResult paramOrders) {
if (DEBUG)
Log.d(TAG, "onPostExecute()");
if (paramOrders == null) {
// NotificationsUtil.ToastReasonForFailure(HotelOrderListActivity.this,mReason);
setEmptyView();
} else if (paramOrders.mHttpResult.getStat() == TuanTripSettings.POSTSUCCESS) {
ensureUi(paramOrders);
} else if (paramOrders.mHttpResult.getStat() == TuanTripSettings.POSTFAILED) {
// Toast.makeText(HotelOrderListActivity.this,paramOrders.mHttpResult.getMessage(),Toast.LENGTH_SHORT).show();
setEmptyView();
} else if (paramOrders.mHttpResult.getStat() == TuanTripSettings.LOGINFAILED) {
Toast.makeText(HotelOrderListActivity.this,
paramOrders.mHttpResult.getMessage(),
Toast.LENGTH_SHORT).show();
((TuanTrip) getApplication()).loginOut();
Intent localIntent4 = new Intent(HotelOrderListActivity.this,
LoginActivity.class);
localIntent4.putExtra(LoginActivity.EXTRA_OPTION,
LoginActivity.OPTION_ADDADDR);
startActivity(localIntent4);
} else {
NotificationsUtil.ToastReasonForFailure(
HotelOrderListActivity.this, mReason);
}
isFinish = true;
}
protected void onCancelled() {
if (DEBUG)
Log.d(TAG, "onCancelled()");
super.onCancelled();
}
protected void onPreExecute() {
if (DEBUG)
Log.d(TAG, "onPreExecute()");
setLoadingView();
isFinish = false;
}
}
}