前提・実現したいこと
現在、android用のアプリを作りたいと思っていて、Bottom navigationで画面を切り替え、その切り替え後の画面によっては画面上部に設置したTabによってさらに画面を切り替えられるようにしたいと思っています。現在の認識として、Bottom navigationとTabのどちらも、タップされたときの処理はFragmentではできず、Activityでしかできないと思っています。そこで、どちらの要素もlayoutファイルに書いたものと、それを処理するコードを書いたActivityというセットを複数用意して実行してみたのですが、Bottom navigationをタップしたときの画面遷移が遅く、また、Title barが2つ表示されてしまい、予想していたものとは程遠い出来になっています。どうすれば、解決できるかお力添えをいただきたいです。
また、Activityでしかタップ時の処理はできないという認識についてもそれであっているのかご教授いただけますと幸いです。
現在のエミュレータ上での表示です。
該当のソースコード
Java
1public class MainActivity extends AppCompatActivity { 2 3 @Override 4 protected void onCreate(Bundle savedInstanceState) { 5 super.onCreate(savedInstanceState); 6 7 setContentView(R.layout.activity_main); 8 BottomNavigationView navView = findViewById(R.id.nav_view); 9 10 navView.setOnNavigationItemSelectedListener( 11 new BottomNavigationView.OnNavigationItemSelectedListener() { 12 @Override 13 public boolean onNavigationItemSelected(@NonNull MenuItem item) { 14 switch (item.getItemId()) { 15 case R.id.navigation_home: 16 17 break; 18 case R.id.navigation_dashboard: 19 Intent intent1=new Intent(MainActivity.this,DashActivity.class); 20 startActivity(intent1); 21 22 break; 23 case R.id.navigation_notifications: 24 Intent intent2=new Intent(MainActivity.this,NotificationsActivity.class); 25 startActivity(intent2); 26 break; 27 } 28 return false; 29 } 30 }); 31 //以下、Tab 32 SectionsPagerAdapter sectionsPagerAdapter = new SectionsPagerAdapter(this, getSupportFragmentManager()); 33 ViewPager viewPager = findViewById(R.id.view_pager); 34 viewPager.setAdapter(sectionsPagerAdapter); 35 TabLayout tabs = findViewById(R.id.tabs); 36 tabs.setupWithViewPager(viewPager); 37 38 } 39 40} 41
Java
1//activity_main.xml 2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 xmlns:app="http://schemas.android.com/apk/res-auto" 4 android:id="@+id/container" 5 android:layout_width="match_parent" 6 android:layout_height="match_parent" 7 android:paddingTop="?attr/actionBarSize"> 8 9 <com.google.android.material.bottomnavigation.BottomNavigationView 10 android:id="@+id/nav_view" 11 android:layout_width="0dp" 12 android:layout_height="wrap_content" 13 android:layout_marginStart="0dp" 14 android:layout_marginEnd="0dp" 15 android:background="?android:attr/windowBackground" 16 app:layout_constraintBottom_toBottomOf="parent" 17 app:layout_constraintLeft_toLeftOf="parent" 18 app:layout_constraintRight_toRightOf="parent" 19 app:menu="@menu/bottom_nav_menu" /> 20 21 <fragment 22 android:id="@+id/nav_host_fragment" 23 android:name="androidx.navigation.fragment.NavHostFragment" 24 android:layout_width="match_parent" 25 android:layout_height="match_parent" 26 app:defaultNavHost="true" 27 app:layout_constraintBottom_toTopOf="@id/nav_view" 28 app:layout_constraintLeft_toLeftOf="parent" 29 app:layout_constraintRight_toRightOf="parent" 30 app:layout_constraintTop_toTopOf="parent" 31 app:navGraph="@navigation/mobile_navigation" /> 32 33 <com.google.android.material.appbar.AppBarLayout 34 android:layout_width="match_parent" 35 android:layout_height="wrap_content" 36 android:theme="@style/AppTheme.AppBarOverlay" 37 app:layout_constraintTop_toTopOf="parent"> 38 39 <TextView 40 android:id="@+id/title" 41 android:layout_width="wrap_content" 42 android:layout_height="wrap_content" 43 android:gravity="center" 44 android:minHeight="?actionBarSize" 45 android:padding="@dimen/appbar_padding" 46 android:text="@string/app_name" 47 android:textAppearance="@style/TextAppearance.Widget.AppCompat.Toolbar.Title" /> 48 49 <com.google.android.material.tabs.TabLayout 50 android:id="@+id/tabs" 51 android:layout_width="match_parent" 52 android:layout_height="wrap_content" 53 android:background="?attr/colorPrimary" /> 54 </com.google.android.material.appbar.AppBarLayout> 55 56 <androidx.viewpager.widget.ViewPager 57 android:id="@+id/view_pager" 58 android:layout_width="match_parent" 59 android:layout_height="match_parent" 60 app:layout_constraintTop_toTopOf="parent" /> 61
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー