#
SDK usage for Android
Video Capture SDK .Net Video Edit SDK .Net Media Blocks SDK .Net Media Player SDK .Net
VisioForge.Core.UI.Android
package contains UI controls for the .Net Android platform.
#
Initializing
You need to add the custom Java Bindings Library to your project for correct work on Android.
- Clone the binding library folder from GitHub.
- Add the
VisioForge.Core.Android.X7.csproj
(net7) orVisioForge.Core.Android.X8.csproj
(net8) to your solution. - Add the helper library dependency to your project
csproj
file (only for Android target). Replace the path to the library if needed.
<ItemGroup>
<ProjectReference Include="..\..\..\AndroidDependency\VisioForge.Core.Android.X7.csproj" />
</ItemGroup>
#
VideoView usage
Add the VideoView to the Activity or Fragment layout:
<VisioForge.Core.UI.Android.VideoView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:minWidth="25px"
android:minHeight="25px"
android:id="@+id/videoView" />
#
Redists
SDK has independent redist packages for each platform. You can find more information on the Deployment of used SDK.
Visit our GitHub page to get more code samples.