私はジョブポータルアプリケーションを作成する必要があるこの大学のプロジェクトに取り組んでいます 私は下部のナビゲーションビューを使用していました。レイアウト私はそれがうまく動作し、タブが正常に動作する私のアプリを起動したら。しかし、あるメニューから他のメニューに移動して、タブを含むメニュー項目に戻ると、タブは正しく機能しません。 iはタブでリサイクルビューを使用していると、リストが最初に表示されますが、私は、リストはもはや を表示されている第三下のメニューに移動したら、以下の私のタブのレイアウトのコードと下部のナビゲーションビューでtablayoutがBottomのナビゲーションに正しくデータを表示していないナビアイテム
private BottomNavigationView.OnNavigationItemSelectedListener
mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction transaction =
fragmentManager.beginTransaction();
switch (item.getItemId()) {
case R.id.navigation_home:
transaction.replace(R.id.content,new
HomeFragment()).commit();
return true;
case R.id.navigation_JobBoard:
transaction.replace(R.id.content,new
JobBoardFragment()).commit();
return true;
case R.id.navigation_notifications:
transaction.replace(R.id.content,new
NotificationBoardFragment()).commit();
return true;
}
return false;
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_profile);
BottomNavigationView navigation = (BottomNavigationView)
findViewById(R.id.navigation);
navigation.setOnNavigationItemSelectedListener
(mOnNavigationItemSelectedListener);
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction transaction = fragmentManager.beginTransaction();
transaction.replace(R.id.content,new HomeFragment()).commit();
}
}
JOBBoardFragmentクラス
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view= inflater.inflate(R.layout.fragment_jobs, container, false);
TabLayout tabs = (TabLayout) view.findViewById(R.id.result_tabs);
tabs.addTab(tabs.newTab().setText("saved"));
tabs.addTab(tabs.newTab().setText("Inbox"));
tabs.addTab(tabs.newTab().setText("sent"));
ViewPager pager = (ViewPager) view.findViewById(R.id.viewpager);
// SimpleFragmentPagerAdapter adapter = new
SimpleFragmentPagerAdapter(this, getSupportFragmentManager());
// setContentView(R.layout.activity_main);
TabsPagerAdapter adapter = new TabsPagerAdapter(getFragmentManager());
pager.setAdapter(adapter);
tabs.setupWithViewPager(pager);
return view;
}
レイアウトファイル
<RelativeLayout 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"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context="com.example.jimmy.workmen.
DashboardFragment.JobBoardFragment">
<!-- TODO: Update blank fragment layout -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/linearLayout2">
<SearchView
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentStart="true"
android:layout_below="@+id/linearLayout2">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/Theme.Design.NoActionBar"
app:expanded="true">
<android.support.design.widget.TabLayout
android:id="@+id/result_tabs"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:drawable/bottom_bar"
android:theme="@style/Base.DialogWindowTitleBackground.AppCompat"
app:tabGravity="fill"
app:tabIndicatorColor="@android:color/holo_orange_dark"
app:tabMaxWidth="0dp"
app:tabMode="fixed"
app:tabSelectedTextColor="?attr/colorBackgroundFloating" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
</RelativeLayout>
クラスtabspageradapter
public class TabsPagerAdapter extends FragmentPagerAdapter {
private Context mContext ;
private String tabTitles[] = new String[]{"saved", "inbox", "sent"};
public TabsPagerAdapter(FragmentManager fm) {
super(fm);
// mContext = context;
}
@Override
public Fragment getItem(int position) {
// getItem is called to instantiate the fragment for the given page.
if (position == 0) {
return new InboxFragment();
} else if (position == 1){
return new SavedFragment();
} else if (position == 2){
return new SentFragment();
} else {
return null;
}
}
@Override
public int getCount() {
return 3;
}
public CharSequence getPageTitle(int position) {
return tabTitles[position];
}
}
あなたは 'TabsPagerAdapter'を共有できますか? – Mehmed
TabsPagerAdapterクラスを追加しました – depp
途中で 'onCreateView()'に3つの 'addTab()'呼び出しが必要なく、 'TabsPagerAdapter'によって既に作成されています。 – Mehmed