안 드 로 이 드 는 viewpager 를 사용 하여 오프셋 을 계산 하여 옵션 기능 을 실현 합 니 다.

본 논문 의 사례 는 안 드 로 이 드 가 옵션 기능 을 실현 하 는 것 을 공유 하고 오프셋 을 계산 하여 tetxview 와 imageView 의 대응 치 를 설정 하 며 일부 color 의 값 은 독자 스스로 보충 합 니 다.
구현 효과 도:

(1)메 인 인터페이스의 레이아웃 activity 간단하게 쓰기main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:clipToPadding="true"
 android:fitsSystemWindows="true"
 android:background="@color/bg_color">

 <LinearLayout
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="@color/bag_gray"
 android:orientation="vertical">

 <LinearLayout
  android:layout_width="match_parent"
  android:layout_height="36dp"
  android:background="@android:color/white"
  android:orientation="horizontal"
  android:weightSum="3">

  <TextView
  android:id="@+id/tab1_tv"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:layout_gravity="center"
  android:layout_weight="1"
  android:gravity="center"
  android:text="  "
  android:textColor="@color/title_bag"
  android:textSize="18sp" />

  <TextView
  android:id="@+id/tab2_tv"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:layout_gravity="center"
  android:layout_weight="1"
  android:gravity="center"
  android:text="  "
  android:textColor="@color/text_color_context"
  android:textSize="18sp" />
  <TextView
  android:id="@+id/tab3_tv"
  android:layout_width="0dp"
  android:layout_height="wrap_content"
  android:layout_gravity="center"
  android:layout_weight="1"
  android:gravity="center"
  android:text="  "
  android:textColor="@color/text_color_context"
  android:textSize="18sp" />

 </LinearLayout>

 <View
  android:layout_width="match_parent"
  android:layout_height="0.5dp"
  android:background="@color/text_color_context" />
 <View
  android:id="@+id/cursor"
  android:layout_width="50dp"
  android:layout_height="2dp"
  android:layout_marginLeft="40dp"
  android:layout_marginTop="0dip"
  android:background="@color/title_bag"
  />
 <android.support.v4.view.ViewPager
  android:id="@+id/thire_vp"
  android:layout_width="match_parent"
  android:layout_height="match_parent"/>
 </LinearLayout>

</LinearLayout>
(2)viewpager 어댑터 설정:Fragment Adapter

public class FragmentAdapter extends FragmentPagerAdapter {
 private ArrayList<Fragment> list;
 FragmentManager fm;

 public FragmentAdapter(FragmentManager fm, ArrayList<Fragment> list){
 super(fm);
 this.fm = fm;
 this.list = list;
 }

 @Override
 public Fragment getItem(int position) {
 return list.get(position);
 }

 @Override
 public int getCount() {
 return list.size();
 }
}
(3)그리고 세 개의 fragment 를 설정 합 니 다.세 개의 옵션 이 있 기 때문에 우 리 는 세 개의 fragment 를 새로 만 들 었 습 니 다.각각 OneFragment,Two Fragment,ThreeFragment 입 니 다. ,레이아웃 은 세 개 를 새로 만들어 야 합 니 다.fragment 와 일일이 대응 해 야 합 니 다.레이아웃 이 너무 간단 하기 때문에 여 기 는 쓰 지 않 겠 습 니 다.fragment 코드 를 간단하게 쓰 세 요.

public class OneFragment extends Fragment {

 @Nullable
 @Override
 public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
 View view = inflater.inflate(R.layout.fragment_one,null);
 return view;
 }
}
(4)MainActivity 에서 fragment 어댑터 를 설정 하고 표시 내용 을 설정 하 며 viewpager 의 이벤트 감청 을 합 니 다.

public class MainActivity extends FragmentActivity implements ViewPager.OnPageChangeListener,View.OnClickListener{
 private TextView tab1Tv;
 private TextView tab2Tv;
 private TextView tab3Tv;
 private View cursor;
 private ViewPager thirdVp;

 private ArrayList<Fragment> fragmentlist;
 private int offset = 0;
 private int screenWidth = 0;
 private int screenl_3;
 private LinearLayout.LayoutParams lp;

 @Override
 protected void onCreate(@Nullable Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_product);

 //    
 tab1Tv = (TextView)findViewById(R.id.tab1_tv);
 tab2Tv = (TextView)findViewById(R.id.tab2_tv);
 tab3Tv = (TextView)findViewById(R.id.tab3_tv);
 cursor = (View) findViewById(R.id.cursor);
 thirdVp = (ViewPager) findViewById(R.id.thire_vp);

 //      
 DisplayMetrics dm = new DisplayMetrics();
 getWindowManager().getDefaultDisplay().getMetrics(dm);
 screenWidth = dm.widthPixels;
 screenl_3 = screenWidth/3; //  3  1
 lp = (LinearLayout.LayoutParams)cursor.getLayoutParams();

 fragmentlist = new ArrayList<>();
 fragmentlist.add(new OneFragment());
 fragmentlist.add(new TwoFragment());
 fragmentlist.add(new ThreeFragment());

 thirdVp.setAdapter(new FragmentAdapter(getSupportFragmentManager(),fragmentlist));
 thirdVp.setCurrentItem(0);
 thirdVp.setOffscreenPageLimit(2);

 thirdVp.setOnPageChangeListener(this);
 tab1Tv.setOnClickListener(this);
 tab2Tv.setOnClickListener(this);
 tab3Tv.setOnClickListener(this);
 }

 @Override
 public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
 offset = (screenl_3-cursor.getLayoutParams().width)/2;
 Log.d("TAG", "111----"+position + "--" + positionOffset + "--"
  + positionOffsetPixels);
 final float scale = getResources().getDisplayMetrics().density;
 if (position == 0){
  lp.leftMargin = (int)(positionOffsetPixels/3)+offset;
 }else if(position ==1){
  lp.leftMargin = (int)(positionOffsetPixels/3)+screenl_3+offset;
 }
 cursor.setLayoutParams(lp);
 upTextcolor(position);
 }

 private void upTextcolor(int position){
 if (position==0){
  tab1Tv.setTextColor(getResources().getColor(R.color.title_bag));
  tab2Tv.setTextColor(getResources().getColor(R.color.text_color_context));
  tab3Tv.setTextColor(getResources().getColor(R.color.text_color_context));
 }else if(position==1){
  tab1Tv.setTextColor(getResources().getColor(R.color.text_color_context));
  tab2Tv.setTextColor(getResources().getColor(R.color.title_bag));
  tab3Tv.setTextColor(getResources().getColor(R.color.text_color_context));
 }else if(position==2){
  tab1Tv.setTextColor(getResources().getColor(R.color.text_color_context));
  tab2Tv.setTextColor(getResources().getColor(R.color.text_color_context));
  tab3Tv.setTextColor(getResources().getColor(R.color.title_bag));
 }
 }


 @Override
 public void onPageSelected(int position) {

 }

 @Override
 public void onPageScrollStateChanged(int state) {

 }

 @Override
 public void onClick(View view) {
 switch (view.getId()) {
  case R.id.tab1_tv:
  thirdVp.setCurrentItem(0);
  break;
  case R.id.tab2_tv:
  thirdVp.setCurrentItem(1);
  break;
  case R.id.tab3_tv:
  thirdVp.setCurrentItem(2);
  break;
 }
 }
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기