本文章向大家介紹如何在Android中實(shí)現(xiàn)一個(gè)點(diǎn)擊切換視圖并跳轉(zhuǎn)傳值功能的基本知識點(diǎn)總結(jié)和需要注意事項(xiàng),具有一定的參考價(jià)值,需要的朋友可以參考一下。
成都創(chuàng)新互聯(lián)總部坐落于成都市區(qū),致力網(wǎng)站建設(shè)服務(wù)有網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營銷策劃、網(wǎng)頁設(shè)計(jì)、網(wǎng)站維護(hù)、公眾號搭建、微信小程序、軟件開發(fā)等為企業(yè)提供一整套的信息化建設(shè)解決方案。創(chuàng)造真正意義上的網(wǎng)站建設(shè),為互聯(lián)網(wǎng)品牌在互動(dòng)行銷領(lǐng)域創(chuàng)造價(jià)值而不懈努力!
1,MainActivity的xml布局
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
android:layout_width="match_parent"
android:layout_height="wrap_content">
android:layout_height="wrap_content"
android:orientation="horizontal"
>
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#fff"
android:text="銷量"
/>
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#fff"
android:text="銷量"
/>
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#fff"
android:text="銷量"
/>
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#fff"
android:text="銷量"
/>
android:layout_width="match_parent"
android:layout_height="match_parent">
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
2.MainActivity
public class MainActivity extends AppCompatActivity implements IView {
private IPersenterImpl iPersenter;
String path ="searchProducts";
private XRecyclerView xRecyclerView;
HeadView headView;
private BeanAdapter adapter;
private int page;
private boolean isLinear = true;
private Object message;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
iPersenter = new IPersenterImpl(this);
page = 1;
init();
//注冊
EventBus.getDefault().register(this);
}
private void init() {
xRecyclerView = findViewById(R.id.xresycle);
headView = findViewById(R.id.headview);
//點(diǎn)擊頭部進(jìn)行切換
headView.setOnClick(new HeadView.OnClick() {
@Override
public void Click() {
List
changeLiGr();
adapter.setData(data);
}
});
//改變頭部文字重新請求
headView.setGetEdText(new HeadView.getEdText() {
@Override
public void getName(String name) {
page = 1;
initData(name,page);
}
});
//刷新加載
xRecyclerView.setLoadingMoreEnabled(true);
xRecyclerView.setPullRefreshEnabled(true);
changeLiGr();
xRecyclerView.setLoadingListener(new XRecyclerView.LoadingListener() {
@Override
public void onRefresh() {
page = 1;
initData(message+"",page);
}
@Override
public void onLoadMore() {
initData(message+"",page);
}
});
}
//改變狀態(tài)
private void changeLiGr(){
if (isLinear){
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
xRecyclerView.setLayoutManager(layoutManager);
}else{
GridLayoutManager manager = new GridLayoutManager(this,2);
manager.setOrientation(LinearLayoutManager.VERTICAL);
xRecyclerView.setLayoutManager(manager);
}
adapter = new BeanAdapter(this,isLinear);
xRecyclerView.setAdapter(adapter);
adapter.setOnClick(new BeanAdapter.OnClick() {
@Override
public void click(int pid) {
Intent intent = new Intent(MainActivity.this,LoginActivity.class);
intent.putExtra("pid",pid);
startActivity(intent);
}
});
//狀態(tài)反選
isLinear = !isLinear;
}
//請求
private void initData(String name,int page) {
Map
pamars.put("keywords",name);
pamars.put("page",page+"");
iPersenter.showRequestData(path,pamars,GoodsBean.class);
}
//得到粘性事件
@Subscribe(threadMode = ThreadMode.MAIN,sticky = true)
public void getName(EventBusBean eventBusBean){
if (eventBusBean.getId() == 1) {
message = eventBusBean.getMessage();
initData(eventBusBean.getMessage().toString(), page);
}
}
@Override
public void startRequestData(Object data) {
if (data instanceof GoodsBean){
GoodsBean bean = (GoodsBean) data;
if (page == 1){
adapter.setData(bean.getData());
}else{
adapter.addData(bean.getData());
}
page++;
xRecyclerView.refreshComplete();
xRecyclerView.loadMoreComplete();;
}
}
//解綁
@Override
protected void onDestroy() {
super.onDestroy();
iPersenter.onDestory();
EventBus.getDefault().unregister(this);
}
}
以上就是小編為大家?guī)淼娜绾卧贏ndroid中實(shí)現(xiàn)一個(gè)點(diǎn)擊切換視圖并跳轉(zhuǎn)傳值功能的全部內(nèi)容了,希望大家多多支持創(chuàng)新互聯(lián)!