Added custom action bar with USB icon.

This commit is contained in:
vsuryakumar
2023-01-31 17:41:29 +05:30
parent 8c1da820e0
commit ab6e0d50da
10 changed files with 125 additions and 10 deletions

View File

@@ -37,7 +37,8 @@
<activity
android:name="com.example.hpos.presentation.testRight.TestRightActivity"
android:exported="false"
android:windowSoftInputMode="adjustPan">
android:windowSoftInputMode="adjustPan"
android:parentActivityName="com.example.hpos.presentation.MainActivity">
<!-- <intent-filter>-->
<!-- <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />-->
<!-- </intent-filter>-->
@@ -46,8 +47,10 @@
<!-- android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"-->
<!-- android:resource="@xml/device_filter" />-->
</activity>
<activity
android:name="com.example.hpos.presentation.MainActivity"
android:theme="@style/Theme.HPOS.ActionBar"
android:exported="true">
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
@@ -58,6 +61,7 @@
android:resource="@xml/device_filter" />
</activity>
</application>
</manifest>