Android Open Source - RequestListView Main Activity






From Project

Back to project page RequestListView.

License

The source code is released under:

Apache License

If you think the Android project RequestListView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/**
 * Copyright (c) 2013, Yoson Hao ???? (haoyuexing@gmail.com).
 */*  ww  w.  ja va 2 s . com*/
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.hao.requestlistviewdemo;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import android.app.Activity;
import android.os.Bundle;

import com.alibaba.fastjson.JSON;
import com.hao.requestlistview.RequestListView;
import com.hao.requestlistview.RequestListView.OnCompleteListener;

public class MainActivity extends Activity {

  private RequestListView mListView;
  private List<ArrayBean> mList;
  private ArrayAdapter mAdapter;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    mList = new ArrayList<ArrayBean>();
    mAdapter = new ArrayAdapter(mList, this);

    mListView = (RequestListView) findViewById(R.id.requestlv);
    mListView.setAdapter(mAdapter);
    mListView.setFooterBackgroundResource(R.drawable.footer_bg);
    mListView.setFooterProgressDrawableResource(R.drawable.progress);
    mListView.setFooterHint("????...", "??...");
    mListView.setRequestType(RequestListView.TYPE_GET);
    mListView.setPageName("page");
    mListView.setFooterAble(true);
    HashMap<String, String> params = new HashMap<String, String>();
    params.put("param", "param");
    mListView.showResult("http://gitdemo.duapp.com/RequestData", params);
    mListView.setOnCompleteListener(new OnCompleteListener() {

      @Override
      public void onSuccess(String str) {
        mList.addAll(JSON.parseArray(str, ArrayBean.class));
        mAdapter.notifyDataSetChanged();
      }

      @Override
      public void onFail(int errorCode) {
        switch (errorCode) {
        case RequestListView.ERROR_AUTH:
          
          break;
        case RequestListView.ERROR_NETWORK:

          break;
        case RequestListView.ERROR_TRANSFORM:
          
          break;
        default:

          break;
        }
      }
    });

  }
}




Java Source Code List

com.hao.requestlistview.RequestListView.java
com.hao.requestlistviewdemo.ArrayAdapter.java
com.hao.requestlistviewdemo.ArrayBean.java
com.hao.requestlistviewdemo.MainActivity.java