Search all food

This commit is contained in:
phanhuuloi27
2022-07-03 21:03:43 +07:00
parent 1568a1b5fc
commit da920372ab
6 changed files with 391 additions and 4 deletions
+9 -4
View File
@@ -20,19 +20,24 @@
android:theme="@style/Theme.Foodify"
tools:replace="android:theme"
tools:targetApi="31">
<activity
android:name=".SearchActivity"
android:exported="false"
android:theme="@style/Theme.Foodify.NoActionBar" />
<activity
android:name=".OrderDetail"
android:exported="true"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="demozpdk"
android:host="app" />
</intent-filter>
<data
android:host="app"
android:scheme="demozpdk" />
</intent-filter>
</activity>
<activity
android:name=".ShowComment"