1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="COMPTE"
app:iconSpaceReserved="false">
<PreferenceScreen
android:title="flodereims"
android:summary="Voir le profil"
android:icon="@drawable/ic_person_outline_menu_grey_24dp">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.debarflorian.imcapp"
android:targetClass="com.debarflorian.imcapp.ProfileActivity"/>
</PreferenceScreen>
</PreferenceCategory>
<PreferenceCategory>
<Preference
android:key="logout"
android:title="Se déconnecter"
android:icon="@drawable/ic_exit_to_app_menu_grey_24dp">
</Preference>
</PreferenceCategory>
</androidx.preference.PreferenceScreen> |