- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在尝试使用共享元素转换在两个屏幕之间制作动画。下面是我的代码的相关部分(可能还有更多不相关的部分),但为了节省空间,我删除了其中的一些部分。
activity_main.xml:
<android.support.v4.widget.DrawerLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout ... >
...
</android.support.design.widget.AppBarLayout>
<fragment
android:id="@+id/fragment"
android:name=".MainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:layout="@layout/fragment_main" />
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView ... />
</android.support.v4.widget.DrawerLayout>
fragment _main.xml:
<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="8dp"
android:scrollbars="vertical"
tools:context=".MainFragment"
tools:showIn="@layout/activity_main" />
RecyclerView 中的每个项目都包含一个 CardView 作为 Root View :
card_item.xml:
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.gms.maps.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="180dp"
map:liteMode="true" />
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/map"
android:transitionName="@string/transition_title" />
<TextView
android:id="@+id/subtitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/job_title"
android:transitionName="@string/transition_rate" />
<TextView
android:id="@+id/description"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/job_rate"
android:transitionName="@string/transition_description" />
</RelativeLayout>
</android.support.v7.widget.CardView>
在 RecyclerView 的 ViewHolder 中,我设置了 onClickListener:
mCardView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(mContext, SecondActivity.class);
View title = mCardView.findViewById(R.id.title);
View rate = mCardView.findViewById(R.id.rate);
View description = mCardView.findViewById(R.id.description);
// Use fancy animations for API 21+
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
mContext.startActivity(intent, ActivityOptions.makeSceneTransitionAnimation(mActivity,
Pair.create(title, mContext.getString(R.string.transition_title)),
Pair.create(rate, mContext.getString(R.string.transition_rate)),
Pair.create(description, mContext.getString(R.string.transition_description))).toBundle()
);
} else {
mContext.startActivity(intent);
}
}
});
问题是,如果我点击 TextViews 稍微离开屏幕的卡片,它们会通过导航栏/导航栏上方进行动画处理:
我怎样才能防止这种情况发生,以便 TextViews 在导航栏“下方”进行动画处理?
最佳答案
您也可以将导航栏添加为共享元素
View navigationBar = mContext.findViewById(android.R.id.navigationBarBackground);
并与 Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME 创建配对,
Pair.create(navigationBar, Window.NAVIGATION_BAR_BACKGROUND_TRANSITION_NAME)
关于android - 共享元素过渡越过导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34767794/
在 Facebook 上,他们似乎有一个阻止您加载他们网站的 iframe 的 block 。 当您这样做时,他们会锁定其网站的全部功能 example . 我只是想知道是否有人知道如何绕过它? 最佳
我只想在已经具有顶部和底部边框(1px 纯灰色)的 div 上添加一个左边框(5px 纯蓝色)。我希望 border-left 位于 border-top 和 border-bottom 之上,但浏览
我看到了这个效果here .滚动页面时,页面的主要内容部分会移动到 div 之上。 我尝试使用视差效果重新创建此效果,但徒劳无功。问题是使用视差,我只能更改同一 div 中的 2 个对象的速度。除此之
我正在为 iOS7 优化网站。我发现,在 safari mobile 上将方向更改为横向时,网站会全屏显示,但浏览器会阻止 View 顶部和底部的一些高度和宽度像素。该区域中的任何触摸或点击事件都不会
我有一个使用 devise 进行身份验证的应用程序。 ruby 1.9.2 上的 Rails 3,passenger 位于 nginx 之上。 这是我的问题:我注意到有时我的 session 会交叉。
我是一名优秀的程序员,十分优秀!