欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實現(xiàn)橫向滑動卡片效果

 更新時間:2020年04月08日 16:27:12   作者:itbobby  
這篇文章主要為大家詳細介紹了Android實現(xiàn)橫向滑動卡片效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

最近項目上需要實現(xiàn)這樣效果的一個頁面,本來想找個現(xiàn)成的兩下搞定,但是問了半天度娘也沒招,索性自己琢磨琢磨(這里邊也少不了同事的幫助),先把最終的效果圖貼上:

理論上講,其本質(zhì)并不復(fù)雜,就是一個viewpager,但是第一次實現(xiàn)這樣的效果還是要花些時間的,具體的代碼如下:

主布局文件:activity_show_industry_list.xml,主要就是一個activity上放個viewpager,但是相對布局是關(guān)鍵

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 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">
 <huazheng.haiereng.views.TitleView
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  app:titleText="搜索框預(yù)留位置"
  app:showBackButton="true"
  android:id="@+id/titleView" />
 <RelativeLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:clipChildren="false"
  android:layerType="software"
  android:id="@+id/awq_rl_vpc">
 <android.support.v4.view.ViewPager
  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" />
 
 </RelativeLayout>
</LinearLayout>

fragment布局文件:fragment_show_industry_list.xml  該布局對應(yīng)的類比較簡單,就不往上貼了

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 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">
 
 <!-- TODO: Update blank fragment layout -->
 
 <FrameLayout
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="300dp" >
 
  <ImageView
   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" />
 
  <FrameLayout
   android:layout_width="match_parent"
   android:layout_height="35dp"
   android:layout_gravity="bottom"
   android:alpha="0.5"
   android:background="#333" />
 
  <FrameLayout
   android:layout_width="wrap_content"
   android:layout_height="35dp"
   android:layout_gravity="center_horizontal|bottom"
   android:id="@+id/frameLayout" >
 
   <LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
 
    <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:textAppearance="?android:attr/textAppearanceMedium"
     android:text="經(jīng)濟型酒店分體空調(diào)解決方案"
     android:textColor="@color/colorTextWhite"
     android:layout_gravity="center"
     android:id="@+id/tv_show_industry_list_title" />
   </LinearLayout>
  </FrameLayout>
 </FrameLayout>
 
 <TextView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:textAppearance="?android:attr/textAppearanceMedium"
  android:text="廣泛應(yīng)用于住宅地產(chǎn)、宿舍、教學(xué)樓、通訊基站等,為其打造舒適空氣解決方案"
  android:id="@+id/tv_show_industry_list_detail"
  android:layout_margin="20dp"
  android:textSize="@dimen/font_size_30"
  android:textColor="@color/colorTextGray" />
 
 <Button
  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" />
</LinearLayout>

主布局類ShowIndustryListActivity.java

public class ShowIndustryListActivity extends BaseActivity {
 private FragmentPagerAdapter pagerada;
 private ShowIndustryListFragment showIndustryListFragment;
 ShowIndustryListFragment fragment1,fragment2,fragment3,fragment4;
 ArrayList<Fragment> 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<Fragment>();
  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());//卡片數(shù)量
  viewPager.setPageMargin(10);//兩個卡片之間的距離,單位dp
 
  if (viewPager!=null){
   viewPager.removeAllViews();
  }
 
  MyFragmentPagerAdapter myFragmentPagerAdapter = new MyFragmentPagerAdapter(getSupportFragmentManager(), fragments);
 
  viewPager.setAdapter(myFragmentPagerAdapter);
 }
 
 class MyFragmentPagerAdapter extends FragmentPagerAdapter {
  private ArrayList<Fragment> listFragments;
 public MyFragmentPagerAdapter(FragmentManager fm, ArrayList<Fragment> 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);
 }
}
 
}

至此,效果就可以實現(xiàn)了,上手試試吧。

更多關(guān)于滑動功能的文章,請點擊專題: 《Android滑動功能》

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android中DrawerLayout+ViewPager滑動沖突的解決方法

    Android中DrawerLayout+ViewPager滑動沖突的解決方法

    這篇文章主要為大家詳細介紹了Android中DrawerLayout+ViewPager滑動沖突的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-06-06
  • Android使用Canvas對象實現(xiàn)刮刮樂效果

    Android使用Canvas對象實現(xiàn)刮刮樂效果

    這篇文章主要介紹了Android使用Canvas對象實現(xiàn)刮刮樂效果,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2018-04-04
  • Android控件之使用ListView實現(xiàn)時間軸效果

    Android控件之使用ListView實現(xiàn)時間軸效果

    這篇文章主要介紹了Android基礎(chǔ)控件之使用ListView實現(xiàn)時間軸效果的相關(guān)資料,本文是以查看物流信息為例,給大家介紹了listview時間軸的實現(xiàn)代碼,需要的朋友可以參考下
    2016-11-11
  • 解析Android開發(fā)優(yōu)化之:對界面UI的優(yōu)化詳解(一)

    解析Android開發(fā)優(yōu)化之:對界面UI的優(yōu)化詳解(一)

    在Android應(yīng)用開發(fā)過程中,屏幕上控件的布局代碼和程序的邏輯代碼通常是分開的。界面的布局代碼是放在一個獨立的xml文件中的,這個文件里面是樹型組織的,控制著頁面的布局
    2013-05-05
  • Android高德地圖poi檢索仿微信發(fā)送位置實例代碼

    Android高德地圖poi檢索仿微信發(fā)送位置實例代碼

    本篇文章主要介紹了Android高德地圖poi檢索仿微信發(fā)送位置實例代碼,具有一定的參考價值,有興趣的可以了解一下。
    2017-04-04
  • Android編程實現(xiàn)EditText字數(shù)監(jiān)聽并顯示的方法

    Android編程實現(xiàn)EditText字數(shù)監(jiān)聽并顯示的方法

    這篇文章主要介紹了Android編程實現(xiàn)EditText字數(shù)監(jiān)聽并顯示的方法,涉及Android EditText文本框事件監(jiān)聽與響應(yīng)相關(guān)操作技巧,需要的朋友可以參考下
    2017-02-02
  • Android中兩個Activity之間數(shù)據(jù)傳遞及返回問題

    Android中兩個Activity之間數(shù)據(jù)傳遞及返回問題

    本篇文章主要介紹了Android中兩個Activity之間數(shù)據(jù)傳遞及返回問題,這里整理了詳細的代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下。
    2017-02-02
  • Kotlin語言使用BroadcastReceiver示例介紹

    Kotlin語言使用BroadcastReceiver示例介紹

    Android開發(fā)的四大組件分別是:活動(activity),用于表現(xiàn)功能;服務(wù)(service),后臺運行服務(wù),不提供界面呈現(xiàn);廣播接受者(Broadcast Receive),勇于接收廣播;內(nèi)容提供者(Content Provider),支持多個應(yīng)用中存儲和讀取數(shù)據(jù),相當(dāng)于數(shù)據(jù)庫,本篇著重介紹廣播組件
    2022-09-09
  • 詳解android項目由Gradle 2.2 切換到 3.0的坑

    詳解android項目由Gradle 2.2 切換到 3.0的坑

    本篇文章主要介紹了詳解android項目由Gradle 2.2 切換到 3.0的坑,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-02-02
  • 使用Android studio3.6的java api方式調(diào)用opencv

    使用Android studio3.6的java api方式調(diào)用opencv

    這篇文章主要介紹了Android studio3.6的java api方式調(diào)用opencv的代碼詳解,本文通過實例代碼給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2020-03-03

最新評論