Upgrade to API 35
This commit is contained in:
@@ -5,12 +5,12 @@ plugins {
|
|||||||
|
|
||||||
android {
|
android {
|
||||||
namespace = "com.example.busroute"
|
namespace = "com.example.busroute"
|
||||||
compileSdk = 34
|
compileSdk = 35
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId = "com.clement.busroute"
|
applicationId = "com.clement.busroute"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 34
|
targetSdk = 35
|
||||||
versionCode = 1
|
versionCode = 1
|
||||||
versionName = "1.0"
|
versionName = "1.0"
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,8 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:orientation="vertical"
|
android:orientation="vertical"
|
||||||
android:layout_width="fill_parent"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="fill_parent">
|
android:layout_height="fill_parent"
|
||||||
|
android:fitsSystemWindows="true">
|
||||||
|
|
||||||
<RelativeLayout tools:ignore="UselessParent">
|
<RelativeLayout tools:ignore="UselessParent">
|
||||||
<TableLayout
|
<TableLayout
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent"
|
||||||
|
android:fitsSystemWindows="true">
|
||||||
<TableLayout
|
<TableLayout
|
||||||
android:layout_width="200dp"
|
android:layout_width="200dp"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
@@ -16,9 +18,12 @@
|
|||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="20dp"
|
||||||
android:text="Entrez un nom pour la ligne (80 caractères max)"
|
android:text="Entrez un nom pour la ligne (80 caractères max)"
|
||||||
android:layout_height="wrap_content"/>
|
android:layout_height="wrap_content"/>
|
||||||
|
|
||||||
<EditText
|
<EditText
|
||||||
android:id="@+id/route_name"
|
android:id="@+id/route_name"
|
||||||
android:maxLength="80"/>
|
android:maxLength="80"
|
||||||
|
android:minHeight="50dp"
|
||||||
|
tools:ignore="SpeakableTextPresentCheck" />
|
||||||
<Button
|
<Button
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:id="@+id/validate_form"
|
android:id="@+id/validate_form"
|
||||||
@@ -26,12 +31,10 @@
|
|||||||
android:text="Valider"/>
|
android:text="Valider"/>
|
||||||
|
|
||||||
</TableLayout>
|
</TableLayout>
|
||||||
<ScrollView>
|
|
||||||
<TableLayout
|
<TableLayout
|
||||||
android:id="@+id/table"
|
android:id="@+id/table"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:clipToPadding="false"
|
android:clipToPadding="false"
|
||||||
android:padding="16dp" />
|
android:padding="16dp" />
|
||||||
</ScrollView>
|
|
||||||
</TableLayout>
|
</TableLayout>
|
||||||
@@ -1,9 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent"
|
||||||
|
android:fitsSystemWindows="true">
|
||||||
<Spinner
|
<Spinner
|
||||||
android:id="@+id/combo_path">
|
android:id="@+id/combo_path"
|
||||||
|
android:minHeight="50dp">
|
||||||
</Spinner>
|
</Spinner>
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/open_maps"
|
android:id="@+id/open_maps"
|
||||||
|
|||||||
Reference in New Issue
Block a user