After Width: | Height: | Size: 43 KiB |
After Width: | Height: | Size: 824 B |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 534 B |
After Width: | Height: | Size: 820 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 3.6 KiB |
After Width: | Height: | Size: 2.3 KiB |
After Width: | Height: | Size: 5.0 KiB |
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@drawable/ic_menu_likes"/>
|
||||
<foreground android:drawable="@mipmap/ic_menu_setting_foreground"/>
|
||||
</adaptive-icon>
|
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<background android:drawable="@drawable/ic_menu_likes"/>
|
||||
<foreground android:drawable="@mipmap/ic_menu_setting_foreground"/>
|
||||
</adaptive-icon>
|
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 5.4 KiB |
After Width: | Height: | Size: 2.4 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 5.1 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 7.8 KiB |
After Width: | Height: | Size: 8.1 KiB |
After Width: | Height: | Size: 4.3 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 18 KiB |
@ -0,0 +1,5 @@
|
||||
package fr.iut.mapping
|
||||
import androidx.fragment.app.Fragment
|
||||
|
||||
class SecondFragment:Fragment(R.layout.fragment_likes_page) {
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
package fr.iut.mapping
|
||||
|
||||
import androidx.fragment.app.Fragment
|
||||
|
||||
class FirstFragment:Fragment(R.layout.fragment_map_page) {
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".LikesPage">
|
||||
|
||||
<!-- TODO: Update blank fragment layout -->
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:text="@string/likesPage" />
|
||||
|
||||
</FrameLayout>
|
@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".MapPage">
|
||||
|
||||
<!-- TODO: Update blank fragment layout -->
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:text="@string/mapPage" />
|
||||
|
||||
</FrameLayout>
|
@ -1,3 +1,6 @@
|
||||
<resources>
|
||||
<string name="app_name">Mapping</string>
|
||||
<!-- TODO: Remove or change this placeholder text -->
|
||||
<string name="likesPage">likes page</string>
|
||||
<string name="mapPage">mapPage</string>
|
||||
</resources>
|