Android横向滚动卡片,Android实现横向滑动卡片效果

Android实现横向滑动卡片效果

发布时间:2020-09-04 22:51:17

来源:脚本之家

阅读:255

作者:itbobby

最近项目上需要实现这样效果的一个页面,本来想找个现成的两下搞定,但是问了半天度娘也没招,索性自己琢磨琢磨(这里边也少不了同事的帮助),先把最终的效果图贴上:

f377cce9d1aed11e659de2576a201d41.png

理论上讲,其本质并不复杂,就是一个viewpager,但是第一次实现这样的效果还是要花些时间的,具体的代码如下:

主布局文件:activity_show_industry_list.xml,主要就是一个activity上放个viewpager,但是相对布局是关键

android:layout_width="match_parent" android:layout_height="match_parent"

xmlns:app="http://schemas.android.com/apk/res-auto"

android:orientation="vertical"

android:background="@color/colorGrayBg">

android:layout_width="match_parent"

android:layout_height="wrap_content"

app:titleText="搜索框预留位置"

app:showBackButton="true"

android:id="@+id/titleView" />

android:layout_width="match_parent"

android:layout_height="match_parent"

android:clipChildren="false"

android:layerType="software"

android:id="@+id/awq_rl_vpc">

android:id="@+id/vp_show_industry_list"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_gravity="center"

android:clipChildren="false"

android:layout_marginLeft="40dp"

android:layout_marginRight="40dp"

android:layout_marginBottom="90dp" />

fragment布局文件:fragment_show_industry_list.xml  该布局对应的类比较简单,就不往上贴了

xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"

android:layout_height="match_parent" tools:context="huazheng.haiereng.BlankFragment"

android:orientation="vertical"

android:background="@color/colorWhite">

android:orientation="vertical"

android:layout_width="match_parent"

android:layout_height="300dp" >

android:layout_width="match_parent"

android:layout_height="match_parent"

android:id="@+id/iv_show_industry_list_pic"

android:background="@mipmap/show_industry_detail"

android:layout_gravity="center_horizontal" />

android:layout_width="match_parent"

android:layout_height="35dp"

android:layout_gravity="bottom"

android:alpha="0.5"

android:background="#333" />

android:layout_width="wrap_content"

android:layout_height="35dp"

android:layout_gravity="center_horizontal|bottom"

android:id="@+id/frameLayout" >

android:orientation="horizontal"

android:layout_width="match_parent"

android:layout_height="match_parent" >

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textAppearance="?android:attr/textAppearanceMedium"

android:text="经济型酒店分体空调解决方案"

android:textColor="@color/colorTextWhite"

android:layout_gravity="center"

android:id="@+id/tv_show_industry_list_title" />

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textAppearance="?android:attr/textAppearanceMedium"

android:text="广泛应用于住宅地产、宿舍、教学楼、通讯基站等,为其打造舒适空气解决方案"

android:id="@+id/tv_show_industry_list_detail"

android:layout_margin="20dp"

android:textSize="@dimen/font_size_30"

android:textColor="@color/colorTextGray" />

android:layout_width="120dp"

android:layout_height="35dp"

android:text="查看详情"

android:id="@+id/bt_show_industry_list_cat"

android:textColor="@color/colorTextWhite"

android:layout_gravity="center_horizontal"

android:background="@drawable/drawable_circle_corner" />

主布局类ShowIndustryListActivity.java

public class ShowIndustryListActivity extends BaseActivity {

private FragmentPagerAdapter pagerada;

private ShowIndustryListFragment showIndustryListFragment;

ShowIndustryListFragment fragment1,fragment2,fragment3,fragment4;

ArrayList fragments;

@Bind(R.id.vp_show_industry_list)

ViewPager viewPager;

FragmentManager fragmentManager;

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_show_industry_list);

ButterKnife.bind(this);

fragmentManager = getSupportFragmentManager();

fragments= new ArrayList();

fragment1 = new ShowIndustryListFragment();

fragment2 = new ShowIndustryListFragment();

fragment3 = new ShowIndustryListFragment();

fragment4 = new ShowIndustryListFragment();

fragments.add(fragment1);

fragments.add(fragment2);

fragments.add(fragment3);

fragments.add(fragment4);

viewPager.setOffscreenPageLimit(fragments.size());//卡片数量

viewPager.setPageMargin(10);//两个卡片之间的距离,单位dp

if (viewPager!=null){

viewPager.removeAllViews();

}

MyFragmentPagerAdapter myFragmentPagerAdapter = new MyFragmentPagerAdapter(getSupportFragmentManager(), fragments);

viewPager.setAdapter(myFragmentPagerAdapter);

}

class MyFragmentPagerAdapter extends FragmentPagerAdapter {

private ArrayList listFragments;

public MyFragmentPagerAdapter(FragmentManager fm, ArrayList al) {

super(fm);

listFragments = al;

}

public MyFragmentPagerAdapter(FragmentManager fm) {

super(fm);

}

@Override

public Fragment getItem(int position) {

return listFragments.get(position);

}

@Override

public int getCount() {

return listFragments.size();

}

@Override

public int getItemPosition(Object object) {

return super.getItemPosition(object);

}

}

}

至此,效果就可以实现了,上手试试吧。

更多关于滑动功能的文章,请点击专题: 《Android滑动功能》

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值