我正在对某些视频实施缩放缩放。为此,我使用了许多技术,但没有运气。我使用纹理View作为纹理视图支持矩阵变换。我能够缩放和捏。但现在的问题是如何将拖动应用于缩放视图。以下是我的代码
public function handle($request, Closure $next)
{
if (something == thingy) {
return redirect('/blabla');
}
return $next($request);
}
活动代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.text.TextureActivity" >
<com.text.VideoView
android:id="@+id/vvs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
</RelativeLayout>
视频观看代码为:http://pastebin.com/gDdGwNLT
请帮助我......我遇到了大麻烦。