Android 가로 슬라이딩 카드 효과 구현
이론 적 으로 볼 때 그 본질 은 복잡 하지 않 고 바로 viewpager 이다.그러나 이런 효 과 를 처음 실현 하 는 데 시간 이 좀 걸 리 고 구체 적 인 코드 는 다음 과 같다.
주 레이아웃 파일:activityshow_industry_list.xml,주로 하나의 activity 에 viewpager 를 놓 지만 상대 적 인 레이아웃 이 관건 입 니 다.
<?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=" "
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 레이아웃 파일:fragmentshow_industry_list.xml 이 레이아웃 에 대응 하 는 클래스 는 비교적 간단 해서 위 에 붙 이지 않 습 니 다.
<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=" "
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=" 、 、 、 , "
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>
주 레이아웃 클래스 ShowIndustriListActivity.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());//
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);
}
}
}
이로써 효과 가 실 현 될 수 있 으 니 시작 해 보 자.미끄럼 기능 에 관 한 글 은 주 제 를 클릭 하 십시오《안 드 로 이 드 슬라이딩 기능》
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.