[Android] Add PaddleSeg Android app example (#620)

[Android] Add PaddleSeg Android app example
This commit is contained in:
DefTruth
2022-11-17 16:12:07 +08:00
committed by GitHub
parent cb4a4e09d8
commit 3c5e8cd95d
10 changed files with 675 additions and 44 deletions

View File

@@ -11,18 +11,18 @@
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/facedet_app_name"
android:label="@string/segmentation_app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".detection.DetectionMainActivity">
<activity android:name=".segmentation.SegmentationMainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".detection.DetectionSettingsActivity"
android:name=".segmentation.SegmentationSettingsActivity"
android:label="Settings">
</activity>
</application>