View Pager+Fragmentが横滑りナビゲーションバーを実現します。
12150 ワード
本論文の実例では、ViewPager+Fragmentが横滑りナビゲーションバーの具体的なコードを共有しました。参考にしてください。具体的な内容は以下の通りです。
この文章は主に整理して記録します。
Gif写真を使いたいですが、ここではとりあえず写真を使ってください。
Activity:
この文章は主に整理して記録します。
Gif写真を使いたいですが、ここではとりあえず写真を使ってください。
Activity:
package com.example.administrator.android006;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.LinearLayout;
import com.example.administrator.android006.Fragment.fragment1;
import com.example.administrator.android006.Fragment.fragment2;
import com.example.administrator.android006.Fragment.fragment3;
import com.example.administrator.android006.Fragment.fragment4;
import java.util.ArrayList;
import java.util.List;
public class MainActivity extends FragmentActivity implements View.OnClickListener {
// 4
private LinearLayout main_home_layout,main_msg_layout,main_pal_layout,main_me_layout;
private ViewPager main_mViewPager;
//ViewPager
private FragmentPagerAdapter mAdapter;
//4 Fragment
private List<Fragment> mFragments = new ArrayList<>();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// ,
initView();
initAdapter();
}
public void initAdapter(){
mAdapter = new FragmentPagerAdapter(getSupportFragmentManager()) {
@Override
public Fragment getItem(int position) {
return mFragments.get(position);
}
@Override
public int getCount() {
return mFragments.size();
}
};
main_mViewPager.setAdapter(mAdapter);
main_mViewPager.setOnPageChangeListener(new ViewPager.OnPageChangeListener() {
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
}
@Override
public void onPageSelected(int position) {
// ImageView
resetImg();
//
switch (position) {
case 0:
((ImageView) main_home_layout.findViewById(R.id.main_home_img))
.setImageResource(R.drawable.home_black);
break;
case 1:
((ImageView) main_msg_layout.findViewById(R.id.main_msg_img))
.setImageResource(R.drawable.msg_black);
break;
case 2:
((ImageView) main_pal_layout.findViewById(R.id.main_pal_img))
.setImageResource(R.drawable.pal_black);
break;
case 3:
((ImageView) main_me_layout.findViewById(R.id.main_me_img))
.setImageResource(R.drawable.me_black);
break;
}
}
@Override
public void onPageScrollStateChanged(int state) {
}
});
}
// ImageView
protected void resetImg(){
((ImageView) main_home_layout.findViewById(R.id.main_home_img))
.setImageResource(R.drawable.home_gray);
((ImageView) main_msg_layout.findViewById(R.id.main_msg_img))
.setImageResource(R.drawable.msg_gray);
((ImageView) main_pal_layout.findViewById(R.id.main_pal_img))
.setImageResource(R.drawable.pal_gray);
((ImageView) main_me_layout.findViewById(R.id.main_me_img))
.setImageResource(R.drawable.me_gray);
}
public void initView(){
main_home_layout = findViewById(R.id.main_home_layout);
main_msg_layout = findViewById(R.id.main_msg_layout);
main_pal_layout = findViewById(R.id.main_pal_layout);
main_me_layout = findViewById(R.id.main_me_layout);
main_mViewPager = findViewById(R.id.main_mViewPager);
fragment1 vp_fr1 = new fragment1();
fragment2 vp_fr2 = new fragment2();
fragment3 vp_fr3 = new fragment3();
fragment4 vp_fr4 = new fragment4();
mFragments.add(vp_fr1);
mFragments.add(vp_fr2);
mFragments.add(vp_fr3);
mFragments.add(vp_fr4);
main_home_layout.setOnClickListener(this);
main_msg_layout.setOnClickListener(this);
main_pal_layout.setOnClickListener(this);
main_me_layout.setOnClickListener(this);
}
@Override
public void onClick(View view) {
switch (view.getId()) {
// , ViewPager 0
case R.id.main_home_layout:
main_mViewPager.setCurrentItem(0);
break;
// , ViewPager 1
case R.id.main_msg_layout:
main_mViewPager.setCurrentItem(1);
break;
// , ViewPager 2
case R.id.main_pal_layout:
main_mViewPager.setCurrentItem(2);
break;
// , ViewPager 3
case R.id.main_me_layout:
main_mViewPager.setCurrentItem(3);
break;
}
}
}
.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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal"
>
<LinearLayout
android:id="@+id/main_home_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical"
android:gravity="center"
>
<ImageView
android:id="@+id/main_home_img"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/home_black"
android:scaleType="fitXY"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
/>
</LinearLayout>
<LinearLayout
android:id="@+id/main_msg_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical"
android:gravity="center"
>
<ImageView
android:id="@+id/main_msg_img"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/msg_gray"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
/>
</LinearLayout>
<LinearLayout
android:id="@+id/main_pal_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical"
android:gravity="center"
>
<ImageView
android:id="@+id/main_pal_img"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/pal_gray"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
/>
</LinearLayout>
<LinearLayout
android:id="@+id/main_me_layout"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical"
android:gravity="center"
>
<ImageView
android:id="@+id/main_me_img"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/me_gray"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
/>
</LinearLayout>
</LinearLayout>
<android.support.v4.view.ViewPager
android:id="@+id/main_mViewPager"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v4.view.ViewPager>
</LinearLayout>
これはView Pagerの中の一つのFragmentです。
public class fragment1 extends Fragment {
@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment1,container,false);
}
}
そのFragmentレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text=" Fragment1"
/>
</android.support.constraint.ConstraintLayout>
以上が本文の全部です。皆さんの勉強に役に立つように、私たちを応援してください。