BottomNavigationView を実装しましたが、選択インデックスまたはMenuItem
idの設定方法がわかりません(私の場合は、デフォルトで中央の項目を選択する必要があります)。
まだあまりにも生々しい限り、今のところそのような可能性はないのではないかと心配していますが、とにかくどんな助けも感謝します。ありがとう!
setSelectedItemId
を使用して、選択したメニュー項目IDを設定します。
bottomNavigationView.setSelectedItemId(R.id.item_id);
このメソッドは、Android Support Library 25.3.0。
私のために働いた唯一の解決策は次のとおりです。
View view = bottomNavigationView.findViewById(R.id.menu_action_dashboard);
view.performClick();
クリックするだけでうまくいきます。将来のリリースで追加のメソッド/プロパティが追加されることを期待しています。
UPD:
ser5968678言及 として、Android Support Library v25.3.0をサポートするため、新しいメソッドが追加されました。
bottomNavigationView.setSelectedItemId(R.id.item_id);
代わりにinを使用してください:)
私はこの解決策が受け入れられた答えよりもわずかにエレガントだと思う:
bottomNavigationView.getMenu().getItem(menuItemIndex).setChecked(true)
menuItemIndexは、選択された要素のインデックスです。
この文脈での質問は、ここでの回答に基づいてさまざまな文脈で見られていると思います。評価によると、必要なのは、特定のBottomNavigationView
項目(異なるフラグメントを保持する新しいクラスでは間違いなく)に焦点を合わせる能力です。
これで、BottomNavigationView OR ButtonsまたはAnything clickable to new activity launch to intent:-i.e
_Intent intent = new Intent(getActivity(), New_Activity.class);
intent.putExtra("EXTRA_PAGE, 1);
startActivityForResult(intent, 30);
_
Then-New_Activityで、インテントを受け取ります-
意図の意図= getIntent(); int page = intent.getExtras()。getInt( "EXTRA_PAGE);
次に、ページ変数をループしてnumber/Indexを見つけます。これに対して、現在のBottomNavigationViewが反映しているTHENフォーカスメニュー項目を設定します(BottomNavigationViewに表示用のメニュー項目があると仮定します)
_ if(page == 1) {
currentselect = new Pending();
bottomNavigationView.getMenu().getItem(0).setChecked(true);
}
_
これは上記の質問に答えます。 Fragmentスイッチの残りの部分は、上記の投稿を呼び出すことで適切に処理されます。
bottomNavigationView.setOnNavigationItemSelectedListener(navListener);
_ private BottomNavigationView.OnNavigationItemSelectedListener navListener =
new BottomNavigationView.OnNavigationItemSelectedListener(){
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
Fragment selectedFrag = null;
switch (item.getItemId()) {
case R.id.pending:
selectedFrag = new Pending();
break;
case R.id.onTransmit:
selectedFrag = new inTransmit();
break;
case R.id.complete:
selectedFrag = new Complete();
break;
}
getSupportFragmentManager().beginTransaction().replace(R.id.select_field, selectedFrag).commit();
return true;
}
};
_
注:BottomNavigationViewおよびContentFrameLayoutを使用すると、非常に経済的であり、ViewPagerおよびTablayout
Android studioでのデフォルトの実装のようにリスナーを使用している場合、これを試してください:
BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
Integer indexItem = 4;
navigation.getMenu().getItem(indexItem).setChecked(true);
mOnNavigationItemSelectedListener.onNavigationItemSelected(navigation.getMenu().getItem(indexItem));
Reflectionの使用をやめてください!悪い!
さて、サポートライブラリには、最初に表示されるときに BottomNavigationView からアイテムを選択するオプションはありませんが、次の2つの可能性があります。
まず、ループを使用します。
private void setupBottomNavigationView() {
// Get the menu from our navigationBottomView.
Menu bottomNavigationViewMenu = bottomNavigationView.getMenu();
// Uncheck the first menu item (the default item which is always checked by the support library is at position 0).
bottomNavigationMenu.findItem(R.id.action_one).setChecked(false);
// Check the wished first menu item to be shown to the user.
bottomNavigationMenu.findItem(R.id.action_two).setChecked(true);
bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
Menu bottomNavigationMenu = bottomNavigationView.getMenu();
for (int i = 0; i < bottomNavigationMenu.size(); i++) {
if (item.getItemId() != bottomNavigationMenu.getItem(i).getItemId()) {
bottomNavigationMenu.getItem(i).setChecked(false);
}
}
switch (item.getItemId()) {
case R.id.action_one :
replaceFragment(new OneFragment());
break;
case R.id.action_two :
replaceFragment(new TwoFragment());
break;
case R.id.action_three :
replaceFragment(new ThreeFragment());
break;
}
return false;
}
});
}
次に、ループなしでクラス変数を使用します(ロジックは内部クラス内から実行されるため)。
private void setupBottomNavigationView() {
// Get the menu from our navigationBottomView.
Menu bottomNavigationViewMenu = bottomNavigationView.getMenu();
// Uncheck the first menu item (the default item which is always checked by the support library is at position 0).
bottomNavigationViewMenu.findItem(R.id.action_one).setChecked(false);
// Check the wished first menu item to be shown to the user. Also store that menu item on a variable to control when a menu item must be unchecked.
mActiveBottomNavigationViewMenuItem = bottomNavigationViewMenu.findItem(R.id.action_two).setChecked(true);
bottomNavigationView.setOnNavigationItemSelectedListener(new BottomNavigationView.OnNavigationItemSelectedListener() {
@Override
public boolean onNavigationItemSelected(@NonNull MenuItem selectedMenuItem) {
switch (selectedMenuItem.getItemId()) {
case R.id.action_one :
replaceFragment(new OneFragment());
break;
case R.id.action_two :
replaceFragment(new TwoFragment());
break;
case R.id.action_three :
replaceFragment(new ThreeFragment());
break;
}
if (selectedMenuItem != mActiveBottomNavigationViewMenuItem){
mActiveBottomNavigationViewMenuItem.setChecked(false);
mActiveBottomNavigationViewMenuItem = selectedMenuItem;
}
return false;
}
});
}
private MenuItem mActiveBottomNavigationViewMenuItem;
SetupBottomNavigationView()メソッドが実行されるときActivity onCreate()メソッドで、見てみましょう:
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// ...
setupBottomNavigationView();
}
シンプルで大規模なコードなし。
それが役に立てば幸い!
Bottomnavigation.BottomNavigationViewで最初に選択されたアイテムのKotlinコード:
bottom_navigation_view.selectedItemId = R.id.navigation_item_messages
BottomNavigationViewを拡張し、リフレクションを使用してプライベートメソッドを呼び出すことができます。
public class SelectableBottomNavigationView extends BottomNavigationView {
public SelectableBottomNavigationView(Context context) {
super(context);
}
public SelectableBottomNavigationView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public SelectableBottomNavigationView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public void setSelected(int index) {
try {
BottomNavigationMenuView menuView = (BottomNavigationMenuView) getField(BottomNavigationView.class, "mMenuView");
OnNavigationItemSelectedListener listener = (OnNavigationItemSelectedListener) getField(BottomNavigationView.class, "mListener");
try {
Method method = menuView.getClass().getDeclaredMethod("activateNewButton", Integer.TYPE);
method.setAccessible(true);
// activate item.
method.invoke(menuView, index);
if (listener != null) {
// trigger item select event.
listener.onNavigationItemSelected(getMenu().getItem(index));
}
} catch (SecurityException | NoSuchMethodException | IllegalAccessException | InvocationTargetException e) {
e.printStackTrace();
}
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
}
}
private Object getField(Class clazz, String fieldName) throws NoSuchFieldException, IllegalAccessException {
Field f = clazz.getDeclaredField(fieldName);
f.setAccessible(true);
return f.get(this);
}
}
実装BottomNavigationView.OnNavigationItemSelectedListener
および初期化時にselectedItemId
を設定します。
this.bottomNavigationView.setOnNavigationItemSelectedListener {
val targetFragment = when (menuItem.itemId) {
R.id.action_home -> {
HomeFragment()
}
R.id.action_post -> {
PostFragment()
}
R.id.action_settings -> {
SettingsFragment()
}
else -> null
}
targetFragment?.let {
this.activity?.supportFragmentManager?.transaction {
replace(R.id.containerLayout, it, it.javaClass.simpleName)
}
}
true
}
this.bottomNavigationView.selectedItemId = R.id.action_home