android开发--ListView+Json+异步网络图片加载+滚动翻页的例子.docVIP

  • 2
  • 0
  • 约1.04万字
  • 约 9页
  • 2019-10-27 发布于湖北
  • 举报

android开发--ListView+Json+异步网络图片加载+滚动翻页的例子.doc

android开发--ListView+Json+异步网络图片加载+滚动翻页的例子 例子中用于解析Json的Gson请自己Google下载 主Activity: ? 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 package?COM.Example.Main; ? import?java.util.HashMap; import?java.util.Iterator; import?java.util.LinkedList; import?java.util.List; import?java.util.Map; ? import?COM.Example.Main.R; import?COM.Example.Main.stringGetJson.User; import?android.app.Activity; import?android.app.ListActivity; import?android.os.AsyncTask; import?android.os.Bundle; import?android.view.Gravity; import?android.view.LayoutInflater; import?android.view.View; import?android.view.ViewGroup; import?android.widget.AbsListView; import?android.widget.AbsListView.OnScrollListener; import?android.widget.ArrayAdapter; import?android.widget.ImageView; import?android.widget.LinearLayout; import?android.widget.ListView; import?android.widget.ProgressBar; import?android.widget.TextView; ? public?class?stringListActivity extends?ListActivity { ? ????private?MyAdapter mMyAdapter; ????private?LinkedListUser users = null; ????// 当前Activity中的ListView ????ListView listView = null; ????int?lastItem = 0; ????LinearLayout loadingLayout = null; ? ????@Override ????public?void?onCreate(Bundle savedInstanceState) { ????????super.onCreate(savedInstanceState); ????????setContentView(R.layout.foodlistactivity); ? ????????listView = getListView(); ????????setLoadingLayout(); ????????new?readTask().execute(null); ????} ? ????private?final?class?MyAdapter extends?ArrayAdapterUse

文档评论(0)

1亿VIP精品文档

相关文档