XrecyclerView 는 데 이 터 를 불 러 오고 서로 다른 레이아웃 을 전환 합 니 다.
18947 단어 XrecyclerView데이터 불 러 오기레이아웃 전환
compile 'com.jcodecraeer:xrecyclerview:1.3.2'//XrecyclerView
화면 표시 인터페이스
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="wangxuewei.bwie.com.wangxuewei1510c2071219.MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:gravity="center"
android:text=" " />
<ImageView
android:id="@+id/cutImg"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_margin="7dp"
android:src="@drawable/grid_icon" />
</RelativeLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="#c0c0c0" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal">
<EditText
android:id="@+id/editKey"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:hint=" " />
<Button
android:id="@+id/btnSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" " />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="2dp"
android:background="#c0c0c0" />
<com.jcodecraeer.xrecyclerview.XRecyclerView
android:id="@+id/xrecyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"></com.jcodecraeer.xrecyclerview.XRecyclerView>
</LinearLayout>
격자 레이아웃 항목 표시 스타일
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:id="@+id/GoodsIcon"
android:layout_width="80dp"
android:layout_height="80dp" />
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="asdasd" />
<TextView
android:id="@+id/price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="asdasd" />
<TextView
android:id="@+id/bargainPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="asdasd"
android:textColor="#f00" />
</LinearLayout>
목록 레이아웃
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="horizontal">
<ImageView
android:id="@+id/GoodsIcon"
android:layout_width="80dp"
android:layout_height="80dp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="asdasd" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:orientation="horizontal">
<TextView
android:id="@+id/price"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="asdasd" />
<TextView
android:id="@+id/bargainPrice"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="asdasd"
android:textColor="#f00" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
메 인 인터페이스
public class MainActivity extends AppCompatActivity implements ShopSearchViewAPI, View.OnClickListener {
private ImageView cutImg;
private Button btnSearch;
private List<GoodsBean.DataBean> list = new ArrayList<>();
private XRecyclerView xR;
private EditText editKey;
private int flag = 1;
private MyAdapter myAdapter;
private int i = 1;
private String string = " ";
private String name;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//
initView();
getData(" ", "1");
//
xR.setPullRefreshEnabled(true);
xR.setLoadingMoreEnabled(true);
//
xR.setRefreshProgressStyle(ProgressStyle.BallSpinFadeLoader);
xR.setLaodingMoreProgressStyle(ProgressStyle.BallClipRotate);
clickListener();
xR.setLoadingListener(new XRecyclerView.LoadingListener() {
@Override
public void onRefresh() {
i = 1;
list.clear();
getData(string, "" + i);
xR.refreshComplete();
}
@Override
public void onLoadMore() {
i++;
getData(string, "" + i);
xR.loadMoreComplete();
}
});
}
public void getData(String key, String page) {
ShopSearchPresenter shopSearchPresenter = new ShopSearchPresenter(this, this);
shopSearchPresenter.getGoodsData("http://120.27.23.105/product/searchProducts", key, page);
}
private void clickListener() {
cutImg.setOnClickListener(this);
btnSearch.setOnClickListener(this);
}
private void initView() {
cutImg = (ImageView) findViewById(R.id.cutImg);
btnSearch = (Button) findViewById(R.id.btnSearch);
xR = (XRecyclerView) findViewById(R.id.xrecyclerview);
editKey = (EditText) findViewById(R.id.editKey);
}
@Override
public void getSuccess(Object o) {
GoodsBean o1 = (GoodsBean) o;
List<GoodsBean.DataBean> data = o1.getData();
list.addAll(data);
setMyAdapter(flag);
}
@Override
public void getFailed(Exception e) {
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.cutImg:
if (flag == 1) {
cutImg.setImageResource(R.drawable.lv_icon);
flag = 2;
} else {
cutImg.setImageResource(R.drawable.grid_icon);
flag = 1;
}
setMyAdapter(flag);
break;
case R.id.btnSearch:
list.clear();
name = editKey.getText().toString();
string = name;
getData(string, "1");
break;
}
}
public void setMyAdapter(int f) {
if (f == 1) {
// VERTICAL /
LinearLayoutManager manager = new LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false);
//
xR.setLayoutManager(manager);
myAdapter = new MyAdapter(list, this, f);
xR.setAdapter(myAdapter);
} else if (f == 2) {
// VERTICAL /
GridLayoutManager gridLayoutManager = new GridLayoutManager(this, 2, GridLayoutManager.VERTICAL, false);
//
xR.setLayoutManager(gridLayoutManager);
myAdapter = new MyAdapter(list, this, f);
xR.setAdapter(myAdapter);
}
}
}
MyAdapter
public class MyAdapter extends RecyclerView.Adapter<MyAdapter.MyViewHolder> {
private List<GoodsBean.DataBean> list;
private Context context;
private int flag = 1;
private View inflate;
public MyAdapter(List<GoodsBean.DataBean> list, Context context, int flag) {
this.list = list;
this.context = context;
this.flag = flag;
}
@Override
public MyAdapter.MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
if (flag == 1) {
inflate = LayoutInflater.from(context).inflate(R.layout.lvitem, parent, false);
} else if (flag == 2) {
inflate = LayoutInflater.from(context).inflate(R.layout.griditem, parent, false);
}
MyViewHolder myViewHolder = new MyViewHolder(inflate);
return myViewHolder;
}
@Override
public void onBindViewHolder(MyAdapter.MyViewHolder holder, int position) {
String images = list.get(position).getImages();
String[] split = images.split("\\|");
Glide.with(context).load(split[0]).into(holder.icon);
holder.title.setText(list.get(position).getTitle());
holder.bargainPrice.setText(" :" + list.get(position).getBargainPrice() + "");
holder.price.setText(" :" + list.get(position).getPrice());
holder.price.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);
}
@Override
public int getItemCount() {
return list != null ? list.size() : 0;
}
class MyViewHolder extends RecyclerView.ViewHolder {
private ImageView icon;
private TextView title;
private TextView bargainPrice;
private TextView price;
public MyViewHolder(View itemView) {
super(itemView);
icon = (ImageView) itemView.findViewById(R.id.GoodsIcon);
title = (TextView) itemView.findViewById(R.id.title);
bargainPrice = (TextView) itemView.findViewById(R.id.bargainPrice);
price = (TextView) itemView.findViewById(R.id.price);
}
}
}
ShopSearchModle
public class ShopSearchModle {
public void getData(String url, Map<String, String> map, final ShopSearchPresenterAPI shopSearchPresenterAPI) {
HttpUtils.getInstance().get(url, map, new CallBack() {
@Override
public void onSuccess(Object o) {
shopSearchPresenterAPI.success(o);
}
@Override
public void onFailed(Exception e) {
shopSearchPresenterAPI.failed(e);
}
}, GoodsBean.class);
}
}
ShopSearchPresenter
public class ShopSearchPresenter {
private ShopSearchViewAPI shopSearchViewAPI;
private Context context;
private final ShopSearchModle shopSearchModle;
public ShopSearchPresenter(ShopSearchViewAPI shopSearchViewAPI, Context context) {
this.shopSearchViewAPI = shopSearchViewAPI;
this.context = context;
shopSearchModle = new ShopSearchModle();
}
public void getGoodsData(String url, String keywords, String page) {
Map<String, String> map = new HashMap<>();
map.put("keywords", keywords);
map.put("page", page);
shopSearchModle.getData(url, map, new ShopSearchPresenterAPI() {
@Override
public void success(Object o) {
shopSearchViewAPI.getSuccess(o);
}
@Override
public void failed(Exception e) {
shopSearchViewAPI.getFailed(e);
}
});
}
}
ShopSearchPresenterAPI
public interface ShopSearchPresenterAPI {
void success(Object o);
void failed(Exception e);
}
중점 내용
package wangxuewei.bwie.com.wangxuewei1510c2071219;
/**
* Created by jim on 2017/12/19.
*/
public interface ShopSearchViewAPI {
void getSuccess(Object o);
void getFailed(Exception e);
}
HttpUtils
public class HttpUtils {
private static volatile HttpUtils instance;
private static Handler handler = new Handler();
private HttpUtils() {
}
public static HttpUtils getInstance() {
if (instance == null) {
synchronized (HttpUtils.class) {
if (instance == null) {
instance = new HttpUtils();
}
}
}
return instance;
}
//get
public void get(String url, Map<String, String> map, final CallBack callBack, final Class c) {
// url
StringBuffer stringBuffer = new StringBuffer();
stringBuffer.append(url);
// ? if
if (stringBuffer.indexOf("?") != -1) {
// ? if
if (stringBuffer.indexOf("?") != stringBuffer.length() - 1) {
stringBuffer.append("&");
}
} else {
stringBuffer.append("?");
}
for (Map.Entry<String, String> entry : map.entrySet()) {
stringBuffer.append(entry.getKey())
.append("=")
.append(entry.getValue())
.append("&");
}
// & if
if (stringBuffer.indexOf("&") != -1) {
stringBuffer.deleteCharAt(stringBuffer.lastIndexOf("&"));
}
//1: OkHttpClient
OkHttpClient okHttpClient = new OkHttpClient.Builder().addInterceptor(new Logger()).build();
//2: Request
final Request request = new Request.Builder()
.get()
.url(stringBuffer.toString())
.build();
//3: Call
Call call = okHttpClient.newCall(request);
//4:
call.enqueue(new Callback() {
//
@Override
public void onFailure(Call call, final IOException e) {
handler.post(new Runnable() {
@Override
public void run() {
callBack.onFailed(e);
}
});
}
//
@Override
public void onResponse(Call call, Response response) throws IOException {
String result = response.body().string();
//
final Object o = new Gson().fromJson(result, c);
// ,
handler.post(new Runnable() {
@Override
public void run() {
//
callBack.onSuccess(o);
}
});
}
});
}
//post
public void post(String url, Map<String, String> map, final CallBack callBack, final Class c) {
//1: OkHttpClient
OkHttpClient okHttpClient = new OkHttpClient();
//2: post body
FormBody.Builder builder = new FormBody.Builder();
for (Map.Entry<String, String> entry : map.entrySet()) {
builder.add(entry.getKey(), entry.getValue());
}
FormBody body = builder.build();
//3: Request
final Request request = new Request.Builder()
.post(body)
.url(url)
.build();
//4: Call
Call call = okHttpClient.newCall(request);
//5:
call.enqueue(new Callback() {
//
@Override
public void onFailure(Call call, final IOException e) {
handler.post(new Runnable() {
@Override
public void run() {
callBack.onFailed(e);
}
});
}
//
@Override
public void onResponse(Call call, Response response) throws IOException {
String result = response.body().string();
//
final Object o = new Gson().fromJson(result, c);
// ,
handler.post(new Runnable() {
@Override
public void run() {
//
callBack.onSuccess(o);
}
});
}
});
}
}
중점 내용
public interface CallBack {
void onSuccess(Object o);
void onFailed(Exception e);
}
Logger
public class Logger implements Interceptor {
@Override
public Response intercept(Chain chain) throws IOException {
Request original = chain.request();
HttpUrl url = original.url().newBuilder()
.addQueryParameter("source", "android")
.build();
//
Request request = original.newBuilder()
.url(url)
.build();
return chain.proceed(request);
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Android 는 네 이 티 브 구성 요소 인 WebView 를 사용 하여 웹 페이지 와 데 이 터 를 불 러 오 는 방법일부 안 드 로 이 드 개발 에서 이러한 상황 을 만 날 수 있 습 니 다.상세 한 페이지 를 표시 하 는 것 은 간단 한 문자 도 아니 고 간단 한 웹 페이지 도 아니 라 인 터 페 이 스 를 통 해 html 로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.