向きの変更時にアクティビティを再起動する問題を修正しようとしています。
ドロップダウンリストナビゲーションを備えたActionBar
があり、このリストの最初の要素がすべて回転されるとアクティブになります。 fragment
コンテンツを保持することは難しくありませんでしたが、アクティブなリストアイテムを設定する方法がわかりません。
ActionBar
の定義は次のとおりです。
getActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
ArrayAdapter<CharSequence> list = ArrayAdapter
.createFromResource(this, R.array.action_list, Android.R.layout.simple_dropdown_item_1line);
list.setDropDownViewResource(Android.R.layout.simple_spinner_dropdown_item);
getActionBar().setListNavigationCallbacks(list, this);
そして、ここに私の回避策があります:
@Override
public boolean onNavigationItemSelected(int itemPosition, long itemId) {
if (!application.isRotated) {
application.activePosition = itemPosition;
application.activeId = itemId;
getFragmentManager().beginTransaction()
.replace(Android.R.id.content, MyFragment.newInstance(itemPosition))
.commit();
} else {
application.isRotated = false;
this.onNavigationItemSelected(application.activePosition, application.activeId);
}
return true;
}
@Override
protected void onStop() {
super.onStop();
application.isRotated = true;
}
しかし、それが最善の解決策であるかどうかはわかりません。
私はちょうどその機能を見つけました。 setSelectedNavigationItem(int position)
です。
選択したナビゲーション項目をリストまたはタブ付きナビゲーションモードに設定します。
例:
actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_LIST);
actionBar.setListNavigationCallbacks(adapter, this);
actionBar.setSelectedNavigationItem(position);
サポートライブラリv7の時点では、ActionBarの状態を保存/復元するだけです。
private static final String STATE_SELECTED_NAVIGATION_ITEM = "selectedNavItem";
@Override
public void onRestoreInstanceState(Bundle savedInstanceState) {
// Restore the previously serialized current dropdown position.
if (savedInstanceState.containsKey(STATE_SELECTED_NAVIGATION_ITEM)) {
getSupportActionBar().setSelectedNavigationItem(
savedInstanceState.getInt(STATE_SELECTED_NAVIGATION_ITEM));
}
}
@Override
public void onSaveInstanceState(Bundle outState) {
// Serialize the current dropdown position.
outState.putInt(STATE_SELECTED_NAVIGATION_ITEM, getSupportActionBar()
.getSelectedNavigationIndex());
}
@Override
public void onPageScrollStateChanged(int state) {
}
@Override
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
}
@Override
public void onPageSelected(int position) {
actionBar.setSelectedNavigationItem(position);
selectInSpinnerIfPresent(position, true);
}
/**
* Hack that takes advantage of interface parity between ActionBarSherlock and the native interface to reach inside
* the classes to manually select the appropriate tab spinner position if the overflow tab spinner is showing.
*
* Related issues: https://github.com/JakeWharton/ActionBarSherlock/issues/240 and
* https://Android-review.googlesource.com/#/c/32492/
*
* @author [email protected]
*/
private void selectInSpinnerIfPresent(int position, boolean animate) {
try {
View actionBarView = findViewById(R.id.abs__action_bar);
if (actionBarView == null) {
int id = getResources().getIdentifier("action_bar", "id", "Android");
actionBarView = findViewById(id);
}
Class<?> actionBarViewClass = actionBarView.getClass();
Field mTabScrollViewField = actionBarViewClass.getDeclaredField("mTabScrollView");
mTabScrollViewField.setAccessible(true);
Object mTabScrollView = mTabScrollViewField.get(actionBarView);
if (mTabScrollView == null) {
return;
}
Field mTabSpinnerField = mTabScrollView.getClass().getDeclaredField("mTabSpinner");
mTabSpinnerField.setAccessible(true);
Object mTabSpinner = mTabSpinnerField.get(mTabScrollView);
if (mTabSpinner == null) {
return;
}
Method setSelectionMethod = mTabSpinner.getClass().getSuperclass().getDeclaredMethod("setSelection", Integer.TYPE, Boolean.TYPE);
setSelectionMethod.invoke(mTabSpinner, position, animate);
Method requestLayoutMethod = mTabSpinner.getClass().getSuperclass().getDeclaredMethod("requestLayout");
requestLayoutMethod.invoke(mTabSpinner);
} catch (IllegalArgumentException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (NoSuchMethodException e) {
e.printStackTrace();
} catch (InvocationTargetException e) {
e.printStackTrace();
}
}
公式のAndroid
この実装は私のために動作します(@ mohitum007の応答の修正バージョン):
public static void selectInSpinnerIfPresent(Object inActionBar,
int position, boolean animate) {
// get the ActionBar class
Class<?> actionBarClass = inActionBar.getClass();
// if it is a Jelly bean implementation (ActionBarImplJB), get the super
// class (ActionBarImplICS)
if ("Android.support.v7.app.ActionBarImplJB".equals(actionBarClass
.getName())) {
actionBarClass = actionBarClass.getSuperclass();
}
try {
// try to get the mActionBar field, because the current ActionBar is
// probably just a wrapper Class
// if this fails, no worries, this will be an instance of the native
// ActionBar class or from the ActionBarImplBase class
final Field actionBarField = actionBarClass
.getDeclaredField("mActionBar");
actionBarField.setAccessible(true);
inActionBar = actionBarField.get(inActionBar);
actionBarClass = inActionBar.getClass();
} catch (IllegalAccessException e) {
} catch (IllegalArgumentException e) {
} catch (NoSuchFieldException e) {
}
try {
Field mTabScrollViewField = actionBarClass
.getDeclaredField("mTabScrollView");
mTabScrollViewField.setAccessible(true);
Object mTabScrollView = mTabScrollViewField.get(inActionBar);
if (mTabScrollView == null) {
return;
}
Field mTabSpinnerField = mTabScrollView.getClass()
.getDeclaredField("mTabSpinner");
mTabSpinnerField.setAccessible(true);
Object mTabSpinner = mTabSpinnerField.get(mTabScrollView);
if (mTabSpinner == null) {
return;
}
Method setSelectionMethod = mTabSpinner
.getClass()
.getSuperclass()
.getDeclaredMethod("setSelection", Integer.TYPE,
Boolean.TYPE);
setSelectionMethod.invoke(mTabSpinner, position, animate);
Method requestLayoutMethod = mTabSpinner.getClass().getSuperclass()
.getDeclaredMethod("requestLayout");
requestLayoutMethod.invoke(mTabSpinner);
} catch (NoSuchMethodException | InvocationTargetException
| IllegalAccessException | IllegalArgumentException | NoSuchFieldException e) {
}
}
私も同じ問題を経験していました。多くの調査を行って、ここで解決策を見つけました:
http://mohitum.wordpress.com/tutorials/Android/ ->ヒント5の下.
OnPageChangeListenerを実装し、onPageSelected(int position)でこのメソッドを次のように呼び出します。
@Override
public void onPageSelected(int position) {
mActionBar.setSelectedNavigationItem(position);
selectInSpinnerIfPresent(position, true);
}
private void selectInSpinnerIfPresent(int position, boolean animate) {
try {
ActionBar actionBarView = mActionBar;
Class<?> actionBarViewClass = actionBarView.getClass();
Field mTabScrollViewField = actionBarViewClass.getDeclaredField(“mTabScrollView”);
mTabScrollViewField.setAccessible(true);
Object mTabScrollView = mTabScrollViewField.get(actionBarView);
if (mTabScrollView == null) {
return;
}
Field mTabSpinnerField = mTabScrollView.getClass().getDeclaredField(“mTabSpinner”);
mTabSpinnerField.setAccessible(true);
Object mTabSpinner = mTabSpinnerField.get(mTabScrollView);
if (mTabSpinner == null) {
return;
}
Method setSelectionMethod = mTabSpinner.getClass().getSuperclass().getDeclaredMethod(“setSelection”, Integer.TYPE, Boolean.TYPE);
setSelectionMethod.invoke(mTabSpinner, position, animate);
Method requestLayoutMethod = mTabSpinner.getClass().getSuperclass().getDeclaredMethod(“requestLayout”);
requestLayoutMethod.invoke(mTabSpinner);
} catch (Exception e) {
e.printStackTrace();
}
}
これが他の人にも役立つことを願っています。