ANDROID: меню навигации
Я пытаюсь реализовать переход Shared Element для меню ящика навигации
<item
android:id="@+id/nav_studentprofile"
android:icon="@drawable/studentprofile"
android:title="@string/student_profile"
/>
У меня есть другая деятельность с ImageView
а также TextView
,
<ImageView
android:layout_width="81dp"
android:layout_height="68dp"
app:srcCompat="@drawable/studentprofile"
android:id="@+id/imageview_studentprofile" />
<TextView
android:text="@string/student_profile"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/textview_studentprofile"
android:layout_weight="1"
android:textSize="30sp"/>
Но для перехода к общему элементу я должен передать View элемента, я не могу преобразовать menuItem в View
public boolean onNavigationItemSelected(MenuItem item) {
// Handle navigation view item clicks here.
int id = item.getItemId();
if (id == R.id.nav_studentprofile) {
} else if (id == R.id.nav_classeshistory) {
} else if (id == R.id.nav_studentattendance) {
} else if (id == R.id.nav_datetracking) {
}
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}
Я хочу преобразовать MenuItems
в view
затем используйте это представление в переходе Shared Element
Моя первая активность
Моя вторая активность
1 ответ
При нажатии на элемент вы можете использовать item.getActionView();
чтобы получить представление меню, но это работает только в том случае, если вы добавили пользовательский вид на элементы своего ящика.
Поэтому создайте фиктивный пользовательский вид для элементов ящика навигации:layout name:dummy_drawer_item
и установить android:transitionName="@string/transition_string"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
<!-- Add this line -->
android:transitionName="@string/transition_string">
</LinearLayout>
Затем в menu/ box_items добавьте свой пользовательский вид app:actionLayout="@layout/dummy_drawer_item"
элемент foreach например:
<item
android:id="@+id/nav_camera"
android:icon="@drawable/ic_menu_camera"
android:title="Import"
<!-- Add this line -->
app:actionLayout="@layout/dummy_drawer_item"/>
...
Наконец, когда по элементу нажимают:
public boolean onNavigationItemSelected(MenuItem item) {
...
//Get the view of menuitem
View v = item.getActionView();
//Call your other activity
// Get the transition name from the string
String transitionName = getString(R.string.transition_string);
ActivityOptionsCompat options = ActivityOptionsCompat.makeSceneTransitionAnimation(this, view, transitionName);
//Start the Intent
ActivityCompat.startActivity(this, new Intent(this, YourOtherActivity.class), options.toBundle());
DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);
drawer.closeDrawer(GravityCompat.START);
return true;
}