-
Notifications
You must be signed in to change notification settings - Fork 1
/
HotelListActivity.java
396 lines (341 loc) · 12.3 KB
/
HotelListActivity.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
package com.tudaidai.tuantrip;
import java.util.Observable;
import java.util.Observer;
import android.content.Intent;
import android.graphics.Bitmap;
import android.graphics.Color;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.os.Handler;
import android.text.TextUtils;
import android.util.Log;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.AbsListView;
import android.widget.AbsListView.OnScrollListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ImageView;
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.HotelListResult;
import com.tudaidai.tuantrip.types.HotelShort;
import com.tudaidai.tuantrip.types.ProductShort;
import com.tudaidai.tuantrip.util.NotificationsUtil;
import com.tudaidai.tuantrip.util.RemoteResourceManager;
import com.tudaidai.tuantrip.util.TuanUtils;
import com.tudaidai.tuantrip.widget.HotelListAdapter;
public class HotelListActivity extends LoadableListActivity {
private HotelListAdapter mListAdapter;
private HotelListResult orderResult;
private ListView mListView;
static final boolean DEBUG = TuanTripSettings.DEBUG;
static final String TAG = "HotelListActivity";
private volatile boolean isFinish = true;
public static final String PAGE_NUM = "10";
private int lastItem = 1;
LinearLayout loadingLayout;
TextView firstLine;
TextView secondLine;
ImageView photo;
String[] as;
Bitmap tuanbBitmap;
Handler handler = new Handler();
RemoteResourceManager localRemoteResourceManager;
RemoteResourceManager memRemoteResourceManager;
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 LinearLayout vLayout;
private RemoteResourceManagerObserver mResourcesObserver;
public void onPause() {
mListAdapter.removeObserver();
memRemoteResourceManager.deleteObserver(mResourcesObserver);
super.onPause();
}
@Override
public void onResume() {
mListAdapter.addObserver();
memRemoteResourceManager.addObserver(mResourcesObserver);
super.onResume();
}
protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
// setContentView(R.layout.hotel_list_activity);
as = getIntent().getStringArrayExtra("as");
localRemoteResourceManager = ((TuanTrip) getApplication())
.getFileRemoteResourceManager();
memRemoteResourceManager = ((TuanTrip) getApplication())
.getRemoteResourceManager();
mResourcesObserver = new RemoteResourceManagerObserver();
memRemoteResourceManager.addObserver(mResourcesObserver);
// mListView = (ListView)findViewById(R.id.hotellistView);
mListView = getListView();
mListAdapter = new HotelListAdapter(HotelListActivity.this,
localRemoteResourceManager);
mListAdapter.setLocation(null);
addHeadView();
addLoadView();
mListView.setAdapter(mListAdapter);
mListView.setBackgroundResource(R.color.scroll_bk);
mListView.setCacheColorHint(Color.TRANSPARENT);
mListView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int i,
long id) {
if (mListView.getHeaderViewsCount() != 0) {
i = i - 1;
}
int hid = ((HotelShort) mListAdapter.getItem(i)).getHid();
Intent intent = new Intent(HotelListActivity.this,
HotelDetailActivity.class);
intent.putExtra(HotelDetailActivity.HOTEL_ID, hid);
intent.putExtra(HotelDetailActivity.COME_DATE, as[1]);
intent.putExtra(HotelDetailActivity.OUT_DATE, as[2]);
startActivity(intent);
}
});
new HotelListTask().execute(as);
}
private void ensureUi(HotelListResult paramOrders) {
if (orderResult == null) {
if (paramOrders.mGroup.size() != 0) {
orderResult = paramOrders;
if (orderResult != null
&& orderResult.mGroup.size() == orderResult.getTotla()) {
mListView.removeFooterView(loadingLayout);
}
if (orderResult.productShort.getPid() != 0) {
firstLine.setText(orderResult.productShort.getShortTitle());
secondLine.setText("现价¥"
+ orderResult.productShort.getPrice() + ","
+ orderResult.productShort.getBought() + "人购买");
// photo.loadUrl(orderResult.productShort.getImageUrl());
updateTuanPic();
} else {
mListView.removeHeaderView(vLayout);
}
mListAdapter.setGroup(orderResult.mGroup);
} else {
Toast.makeText(this, "no hotel", Toast.LENGTH_LONG).show();
}
} else {
for (HotelShort hotelShort : paramOrders.mGroup) {
orderResult.mGroup.add(hotelShort);
}
// mListView.removeFooterView(loadingLayout);
mListAdapter.notifyDataSetChanged();
}
}
private void addHeadView() {
LayoutInflater mInflater = LayoutInflater.from(this);
vLayout = (LinearLayout) mInflater.inflate(
R.layout.search_hotel_tuanlist_item, null);
firstLine = (TextView) vLayout.findViewById(R.id.firstLine);
secondLine = (TextView) vLayout.findViewById(R.id.secondLine);
photo = (ImageView) vLayout.findViewById(R.id.photo);
firstLine.setText("1111");
secondLine.setText("现价¥" + 20 + "," + 2 + "人购买");
// photo.setImageDrawable(getResources().getDrawable(R.drawable.img_defalt));
vLayout.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
ProductShort productShort = orderResult.productShort;
Intent intent = new Intent(HotelListActivity.this,
TodayActivity.class);
intent.putExtra("pid", productShort.getPid());
startActivity(intent);
}
});
mListView.addHeaderView(vLayout);
}
private void addLoadView() {
LinearLayout layout = new LinearLayout(this);
layout.setFocusable(false);
layout.setFocusableInTouchMode(false);
layout.setOrientation(LinearLayout.HORIZONTAL);
ProgressBar progressBar = new ProgressBar(this);
progressBar.setFocusable(false);
progressBar.setFocusableInTouchMode(false);
// 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);
textView.setFocusable(false);
textView.setFocusableInTouchMode(false);
layout.addView(textView, FFlayoutParams);
layout.setGravity(Gravity.CENTER);
// 设置ListView的页脚layout
loadingLayout = new LinearLayout(this);
loadingLayout.addView(layout, mLayoutParams);
loadingLayout.setGravity(Gravity.CENTER);
loadingLayout.setFocusable(false);
loadingLayout.setFocusableInTouchMode(false);
loadingLayout
.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS);
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;
lastItem = firstVisibleItem + visibleItemCount - 1;
if (orderResult != null
&& orderResult.mGroup.size() == orderResult.getTotla()
&& mListView.getFooterViewsCount() != 0) {
mListView.removeFooterView(loadingLayout);
}
if (DEBUG)
Log.d(TAG, "Scroll>>>first: " + firstVisibleItem
+ ", visible: " + visibleItemCount + ", total: "
+ totalItemCount);
if (DEBUG)
Log.d(TAG, "Scroll>>>lastItem:" + lastItem);
if (orderResult.mGroup.size() != orderResult.getTotla()) {
if (firstVisibleItem + visibleItemCount == totalItemCount) {
new HotelListTask().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 HotelListTask extends AsyncTask<String, Void, HotelListResult> {
private static final String TAG = "HotelListTask";
private Exception mReason;
public HotelListTask() {
}
protected HotelListResult doInBackground(String... paramArrayOfString) {
if (DEBUG)
Log.d(TAG, "doInBackground()");
HotelListResult orderResult = null;
try {
TuanTripApp localTuanTripApp = ((TuanTrip) HotelListActivity.this
.getApplication()).getTuanTripApp();
if (mListView.getHeaderViewsCount() == 0) {
if (DEBUG)
if (DEBUG)
Log.d(TAG, "没有团购信息");
lastItem++;
}
orderResult = localTuanTripApp.getSearchHotel(
paramArrayOfString, new Integer(lastItem).toString(),
PAGE_NUM);
if (DEBUG)
Log.d(TAG, "doInBackground() over");
} catch (Exception localException) {
this.mReason = localException;
orderResult = null;
}
return orderResult;
}
protected void onPostExecute(HotelListResult paramOrders) {
if (DEBUG)
Log.d(TAG, "onPostExecute()");
if (paramOrders == null) {
NotificationsUtil.ToastReasonForFailure(HotelListActivity.this,
mReason);
} else if (paramOrders.mHttpResult.getStat() == TuanTripSettings.POSTSUCCESS) {
ensureUi(paramOrders);
} else if (paramOrders.mHttpResult.getStat() == TuanTripSettings.POSTFAILED) {
Toast.makeText(HotelListActivity.this,
paramOrders.mHttpResult.getMessage(),
Toast.LENGTH_SHORT).show();
} else if (paramOrders.mHttpResult.getStat() == TuanTripSettings.LOGINFAILED) {
// Toast.makeText(NearbyHotelsActivity.this,paramOrders.mHttpResult.getMessage(),Toast.LENGTH_SHORT).show();
// ((TuanTrip)getApplication()).loginOut();
// Intent localIntent4 = new Intent(NearbyHotelsActivity.this,
// LoginActivity.class);
// localIntent4.putExtra(LoginActivity.EXTRA_OPTION,
// LoginActivity.OPTION_ADDADDR);
// startActivity(localIntent4);
} else {
NotificationsUtil.ToastReasonForFailure(HotelListActivity.this,
mReason);
}
isFinish = true;
// dismissProgressDialog();
}
protected void onCancelled() {
if (DEBUG)
Log.d(TAG, "onCancelled()");
super.onCancelled();
}
protected void onPreExecute() {
if (DEBUG)
Log.d(TAG, "onPreExecute()");
// startProgressBar("查询酒店","查询中...");
isFinish = false;
}
}
//
class RemoteResourceManagerObserver implements Observer {
private RemoteResourceManagerObserver() {
}
public void update(Observable paramObservable, Object paramObject) {
if (paramObject == null)
return;
handler.post(new Runnable() {
@Override
public void run() {
updateTuanPic();
}
});
}
}
//
private void updateTuanPic() {
if (orderResult == null || photo == null)
return;
String introImg = orderResult.productShort.getImageUrl();
if (introImg != null && !TextUtils.isEmpty(introImg)
&& TuanUtils.isPic(introImg)) {
Uri uri = Uri.parse(introImg);
if (!memRemoteResourceManager.exists(uri)) {
TuanTrip tuanTrip = (TuanTrip) getApplicationContext();
// photo.setImageDrawable(getResources().getDrawable(R.drawable.img_defalt));
// if(tuanTrip.getShowPic())
{
if (DEBUG)
Log.d(TAG, "!mRrm.exists(uri)" + uri);
memRemoteResourceManager.request(uri);
}
} else {
if (DEBUG)
Log.d(TAG, "mRrm exists " + uri);
try {
Bitmap bitmap = memRemoteResourceManager.getBitmap(uri);
photo.setImageBitmap(bitmap);
} catch (Exception exception) {
}
}
}
}
}