diff options
Diffstat (limited to 'app')
31 files changed, 510 insertions, 372 deletions
| diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 788eafb..b330a7d 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,5 +1,6 @@  plugins {      id("com.android.application") +    id("org.jetbrains.kotlin.android")  }  android { @@ -14,6 +15,9 @@ android {          versionName = "1.0"          testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" +        vectorDrawables { +            useSupportLibrary = true +        }      }      buildTypes { @@ -28,6 +32,18 @@ android {      }      buildFeatures {          viewBinding = true +        compose = true +    } +    kotlinOptions { +        jvmTarget = "1.8" +    } +    composeOptions { +        kotlinCompilerExtensionVersion = "1.5.1" +    } +    packaging { +        resources { +            excludes += "/META-INF/{AL2.0,LGPL2.1}" +        }      }  } @@ -41,7 +57,18 @@ dependencies {      implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0")      implementation("androidx.navigation:navigation-fragment:2.7.7")      implementation("androidx.navigation:navigation-ui:2.7.7") +    implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0") +    implementation("androidx.activity:activity-compose:1.8.2") +    implementation(platform("androidx.compose:compose-bom:2023.08.00")) +    implementation("androidx.compose.ui:ui") +    implementation("androidx.compose.ui:ui-graphics") +    implementation("androidx.compose.ui:ui-tooling-preview") +    implementation("androidx.compose.material3:material3")      testImplementation("junit:junit:4.13.2")      androidTestImplementation("androidx.test.ext:junit:1.1.5")      androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") +    androidTestImplementation(platform("androidx.compose:compose-bom:2023.08.00")) +    androidTestImplementation("androidx.compose.ui:ui-test-junit4") +    debugImplementation("androidx.compose.ui:ui-tooling") +    debugImplementation("androidx.compose.ui:ui-test-manifest")  }
\ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 08e7139..0cc7f54 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,26 +1,27 @@  <?xml version="1.0" encoding="utf-8"?>  <manifest xmlns:android="http://schemas.android.com/apk/res/android" -    xmlns:tools="http://schemas.android.com/tools"> +	xmlns:tools="http://schemas.android.com/tools"> -    <application -        android:allowBackup="true" -        android:dataExtractionRules="@xml/data_extraction_rules" -        android:fullBackupContent="@xml/backup_rules" -        android:icon="@mipmap/ic_launcher" -        android:label="@string/app_name" -        android:roundIcon="@mipmap/ic_launcher_round" -        android:supportsRtl="true" -        android:theme="@style/Theme.Bingo3" -        tools:targetApi="31"> -        <activity -            android:name=".MainActivity" -            android:exported="true"> -            <intent-filter> -                <action android:name="android.intent.action.MAIN" /> - -                <category android:name="android.intent.category.LAUNCHER" /> -            </intent-filter> -        </activity> -    </application> +	<application +		android:allowBackup="true" +		android:dataExtractionRules="@xml/data_extraction_rules" +		android:fullBackupContent="@xml/backup_rules" +		android:icon="@mipmap/ic_launcher" +		android:label="@string/app_name" +		android:roundIcon="@mipmap/ic_launcher_round" +		android:supportsRtl="true" +		android:theme="@style/Theme.Bingo3" +		tools:targetApi="31"> +		<activity +			android:name=".MainActivity" +			android:exported="true"> +			<intent-filter> +				<action android:name="android.intent.action.MAIN" /> +				<category android:name="android.intent.category.LAUNCHER" /> +			</intent-filter> +		</activity> +		<activity android:name=".OrientationActivity"/> +		<activity android:name=".WeatherActivity"/> +	</application>  </manifest>
\ No newline at end of file diff --git a/app/src/main/java/com/lonkaars/bingo3/MainActivity.java b/app/src/main/java/com/lonkaars/bingo3/MainActivity.java index 495811d..6440c3c 100644 --- a/app/src/main/java/com/lonkaars/bingo3/MainActivity.java +++ b/app/src/main/java/com/lonkaars/bingo3/MainActivity.java @@ -5,16 +5,21 @@ import androidx.appcompat.app.AppCompatActivity;  import android.content.Intent;  import android.os.Bundle;  import android.view.View; -import android.widget.AdapterView; -import android.widget.ArrayAdapter; -import android.widget.EditText; -import android.widget.ListView; -import android.widget.Toast;  public class MainActivity extends AppCompatActivity { -	@Override -	protected void onCreate(Bundle savedInstanceState) { -		super.onCreate(savedInstanceState); -		setContentView(R.layout.activity_main); -	} +    @Override +    protected void onCreate(Bundle savedInstanceState) { +        super.onCreate(savedInstanceState); +        setContentView(R.layout.activity_main); +    } + +    public void navigate_orientation(View view) { +        Intent intent = new Intent(this, OrientationActivity.class); +        startActivity(intent); +    } + +    public void navigate_weather(View view) { +        Intent intent = new Intent(this, WeatherActivity.class); +        startActivity(intent); +    }  } diff --git a/app/src/main/java/com/lonkaars/bingo3/OrientationActivity.java b/app/src/main/java/com/lonkaars/bingo3/OrientationActivity.java new file mode 100644 index 0000000..960af18 --- /dev/null +++ b/app/src/main/java/com/lonkaars/bingo3/OrientationActivity.java @@ -0,0 +1,13 @@ +package com.lonkaars.bingo3; + +import android.os.Bundle; + +import androidx.appcompat.app.AppCompatActivity; + +public class OrientationActivity extends AppCompatActivity { +    @Override +    protected void onCreate(Bundle savedInstanceState) { +        super.onCreate(savedInstanceState); +        setContentView(R.layout.orientation_demo); +    } +}
\ No newline at end of file diff --git a/app/src/main/java/com/lonkaars/bingo3/WeatherActivity.java b/app/src/main/java/com/lonkaars/bingo3/WeatherActivity.java new file mode 100644 index 0000000..46c965c --- /dev/null +++ b/app/src/main/java/com/lonkaars/bingo3/WeatherActivity.java @@ -0,0 +1,21 @@ +package com.lonkaars.bingo3; + +import android.os.Bundle; +import android.view.View; + +import androidx.appcompat.app.AppCompatActivity; + +import com.google.android.material.appbar.MaterialToolbar; + +public class WeatherActivity extends AppCompatActivity { +    @Override +    protected void onCreate(Bundle savedInstanceState) { +        super.onCreate(savedInstanceState); +        setContentView(R.layout.weather); + +        MaterialToolbar toolbar = findViewById(R.id.topAppBar); +        toolbar.setNavigationOnClickListener(v -> { +            finish(); +        }); +    } +}
\ No newline at end of file diff --git a/app/src/main/res/drawable/arrow_left.xml b/app/src/main/res/drawable/arrow_left.xml new file mode 100644 index 0000000..5f4caff --- /dev/null +++ b/app/src/main/res/drawable/arrow_left.xml @@ -0,0 +1 @@ +<!-- drawable/arrow_left.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24" android:tint="?attr/colorControlNormal"><path android:fillColor="#000000" android:pathData="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml index 07d5da9..4e12b43 100644 --- a/app/src/main/res/drawable/ic_launcher_background.xml +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -1,170 +1,170 @@  <?xml version="1.0" encoding="utf-8"?>  <vector xmlns:android="http://schemas.android.com/apk/res/android" -    android:width="108dp" -    android:height="108dp" -    android:viewportWidth="108" -    android:viewportHeight="108"> -    <path -        android:fillColor="#3DDC84" -        android:pathData="M0,0h108v108h-108z" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M9,0L9,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M19,0L19,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M29,0L29,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M39,0L39,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M49,0L49,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M59,0L59,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M69,0L69,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M79,0L79,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M89,0L89,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M99,0L99,108" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,9L108,9" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,19L108,19" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,29L108,29" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,39L108,39" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,49L108,49" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,59L108,59" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,69L108,69" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,79L108,79" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,89L108,89" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M0,99L108,99" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M19,29L89,29" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M19,39L89,39" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M19,49L89,49" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M19,59L89,59" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M19,69L89,69" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M19,79L89,79" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M29,19L29,89" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M39,19L39,89" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M49,19L49,89" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M59,19L59,89" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M69,19L69,89" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> -    <path -        android:fillColor="#00000000" -        android:pathData="M79,19L79,89" -        android:strokeWidth="0.8" -        android:strokeColor="#33FFFFFF" /> +	android:width="108dp" +	android:height="108dp" +	android:viewportWidth="108" +	android:viewportHeight="108"> +	<path +		android:fillColor="#3DDC84" +		android:pathData="M0,0h108v108h-108z" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M9,0L9,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M19,0L19,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M29,0L29,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M39,0L39,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M49,0L49,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M59,0L59,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M69,0L69,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M79,0L79,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M89,0L89,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M99,0L99,108" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,9L108,9" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,19L108,19" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,29L108,29" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,39L108,39" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,49L108,49" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,59L108,59" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,69L108,69" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,79L108,79" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,89L108,89" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M0,99L108,99" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M19,29L89,29" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M19,39L89,39" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M19,49L89,49" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M19,59L89,59" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M19,69L89,69" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M19,79L89,79" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M29,19L29,89" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M39,19L39,89" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M49,19L49,89" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M59,19L59,89" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M69,19L69,89" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" /> +	<path +		android:fillColor="#00000000" +		android:pathData="M79,19L79,89" +		android:strokeWidth="0.8" +		android:strokeColor="#33FFFFFF" />  </vector> diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml index 2b068d1..c6aee64 100644 --- a/app/src/main/res/drawable/ic_launcher_foreground.xml +++ b/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -1,30 +1,30 @@  <vector xmlns:android="http://schemas.android.com/apk/res/android" -    xmlns:aapt="http://schemas.android.com/aapt" -    android:width="108dp" -    android:height="108dp" -    android:viewportWidth="108" -    android:viewportHeight="108"> -    <path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> -        <aapt:attr name="android:fillColor"> -            <gradient -                android:endX="85.84757" -                android:endY="92.4963" -                android:startX="42.9492" -                android:startY="49.59793" -                android:type="linear"> -                <item -                    android:color="#44000000" -                    android:offset="0.0" /> -                <item -                    android:color="#00000000" -                    android:offset="1.0" /> -            </gradient> -        </aapt:attr> -    </path> -    <path -        android:fillColor="#FFFFFF" -        android:fillType="nonZero" -        android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" -        android:strokeWidth="1" -        android:strokeColor="#00000000" /> +	xmlns:aapt="http://schemas.android.com/aapt" +	android:width="108dp" +	android:height="108dp" +	android:viewportWidth="108" +	android:viewportHeight="108"> +	<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z"> +		<aapt:attr name="android:fillColor"> +			<gradient +				android:endX="85.84757" +				android:endY="92.4963" +				android:startX="42.9492" +				android:startY="49.59793" +				android:type="linear"> +				<item +					android:color="#44000000" +					android:offset="0.0" /> +				<item +					android:color="#00000000" +					android:offset="1.0" /> +			</gradient> +		</aapt:attr> +	</path> +	<path +		android:fillColor="#FFFFFF" +		android:fillType="nonZero" +		android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z" +		android:strokeWidth="1" +		android:strokeColor="#00000000" />  </vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/menu.xml b/app/src/main/res/drawable/menu.xml deleted file mode 100644 index 2623a2b..0000000 --- a/app/src/main/res/drawable/menu.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/menu.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24" android:tint="?attr/colorControlNormal"><path android:fillColor="#000000" android:pathData="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_1.xml b/app/src/main/res/drawable/roman_numeral_1.xml deleted file mode 100644 index 4476568..0000000 --- a/app/src/main/res/drawable/roman_numeral_1.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_1.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M14 7V9H13V15H14V17H10V15H11V9H10V7H14Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_2.xml b/app/src/main/res/drawable/roman_numeral_2.xml deleted file mode 100644 index 15bb3dc..0000000 --- a/app/src/main/res/drawable/roman_numeral_2.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_2.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M11 7V9H10V15H11V17H7V15H8V9H7V7H11M17 7V9H16V15H17V17H13V15H14V9H13V7H17Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_3.xml b/app/src/main/res/drawable/roman_numeral_3.xml deleted file mode 100644 index f8a7934..0000000 --- a/app/src/main/res/drawable/roman_numeral_3.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_3.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M9 7V9H8V15H9V17H5V15H6V9H5V7H9M14 7V9H13V15H14V17H10V15H11V9H10V7H14M19 7V9H18V15H19V17H15V15H16V9H15V7H19Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_4.xml b/app/src/main/res/drawable/roman_numeral_4.xml deleted file mode 100644 index c620710..0000000 --- a/app/src/main/res/drawable/roman_numeral_4.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_4.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M12 7L14 17H16L18 7H16L15 12L14 7H12M11 7V9H10V15H11V17H7V15H8V9H7V7H11Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_5.xml b/app/src/main/res/drawable/roman_numeral_5.xml deleted file mode 100644 index 93f876c..0000000 --- a/app/src/main/res/drawable/roman_numeral_5.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_5.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M9 7L11 17H13L15 7H13L12 12L11 7H9Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_6.xml b/app/src/main/res/drawable/roman_numeral_6.xml deleted file mode 100644 index 22ce4de..0000000 --- a/app/src/main/res/drawable/roman_numeral_6.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_6.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M6 7L8 17H10L12 7H10L9 12L8 7H6M17 7V9H16V15H17V17H13V15H14V9H13V7H17Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_7.xml b/app/src/main/res/drawable/roman_numeral_7.xml deleted file mode 100644 index 68768cf..0000000 --- a/app/src/main/res/drawable/roman_numeral_7.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_7.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M4 7L6 17H8L10 7H8L7 12L6 7H4M15 7V9H14V15H15V17H11V15H12V9H11V7H15M20 7V9H19V15H20V17H16V15H17V9H16V7H20Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_8.xml b/app/src/main/res/drawable/roman_numeral_8.xml deleted file mode 100644 index e0c4104..0000000 --- a/app/src/main/res/drawable/roman_numeral_8.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_8.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M1 7L3 17H5L7 7H5L4 12L3 7H1M12 7V9H11V15H12V17H8V15H9V9H8V7H12M17 7V9H16V15H17V17H13V15H14V9H13V7H17M22 7V9H21V15H22V17H18V15H19V9H18V7H22Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/drawable/roman_numeral_9.xml b/app/src/main/res/drawable/roman_numeral_9.xml deleted file mode 100644 index 2cc5736..0000000 --- a/app/src/main/res/drawable/roman_numeral_9.xml +++ /dev/null @@ -1 +0,0 @@ -<!-- drawable/roman_numeral_9.xml --><vector xmlns:android="http://schemas.android.com/apk/res/android" android:height="24dp" android:width="24dp" android:viewportWidth="24" android:viewportHeight="24"><path android:fillColor="#000000" android:pathData="M11 7V9H10V15H11V17H7V15H8V9H7V7H11M12 7L14 12L12 17H14L15 14.5L16 17H18L16 12L18 7H16L15 9.5L14 7H12Z" /></vector>
\ No newline at end of file diff --git a/app/src/main/res/layout-land/orientation_demo.xml b/app/src/main/res/layout-land/orientation_demo.xml new file mode 100644 index 0000000..65dec93 --- /dev/null +++ b/app/src/main/res/layout-land/orientation_demo.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" +	xmlns:app="http://schemas.android.com/apk/res-auto" +	xmlns:tools="http://schemas.android.com/tools" +	android:layout_width="match_parent" +	android:layout_height="match_parent"> + +	<TextView +		android:id="@+id/textView" +		android:layout_width="wrap_content" +		android:layout_height="wrap_content" +		android:rotation="-17" +		android:rotationX="48" +		android:rotationY="23" +		android:scaleX="7" +		android:scaleY="6" +		android:text="landscape" +		android:translationX="100dp" +		app:layout_constraintBottom_toBottomOf="parent" +		app:layout_constraintEnd_toEndOf="parent" +		app:layout_constraintStart_toStartOf="parent" +		app:layout_constraintTop_toTopOf="parent" /> +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index d740acb..30b029b 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -2,23 +2,10 @@  <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"  	xmlns:app="http://schemas.android.com/apk/res-auto"  	xmlns:tools="http://schemas.android.com/tools" -	android:id="@+id/linearLayout" +	android:id="@+id/root_layout"  	android:layout_width="match_parent"  	android:layout_height="match_parent"> -	<com.google.android.material.navigation.NavigationView -		android:id="@+id/navigationView" -		android:layout_width="wrap_content" -		android:layout_height="0dp" -		app:headerLayout="@layout/header_navigation_drawer" -		app:layout_constraintBottom_toBottomOf="parent" -		app:layout_constraintStart_toStartOf="parent" -		app:layout_constraintTop_toTopOf="parent" -		app:layout_constraintVertical_bias="0.0" -		app:menu="@menu/navigation_drawer"> - -	</com.google.android.material.navigation.NavigationView> -  	<com.google.android.material.appbar.AppBarLayout  		android:id="@+id/appBarLayout2"  		style="@style/Widget.MaterialComponents.AppBarLayout.Primary" @@ -26,29 +13,88 @@  		android:layout_height="wrap_content"  		android:fitsSystemWindows="true"  		app:layout_constraintEnd_toEndOf="parent" -		app:layout_constraintStart_toEndOf="@+id/navigationView" +		app:layout_constraintStart_toStartOf="parent"  		app:layout_constraintTop_toTopOf="parent">  		<com.google.android.material.appbar.MaterialToolbar  			android:id="@+id/topAppBar"  			style="@style/Widget.MaterialComponents.Toolbar.Primary"  			android:layout_width="match_parent" -			android:layout_height="wrap_content" +			android:layout_height="match_parent"  			android:background="@android:color/transparent"  			android:elevation="0dp"  			android:keyboardNavigationCluster="true" -			app:navigationIcon="@drawable/menu" -			app:title="@string/nav_header_title" /> +			app:title="bingo 3" />  	</com.google.android.material.appbar.AppBarLayout> -	<ListView -		android:id="@+id/listView" +	<LinearLayout +		android:id="@+id/vertical_list"  		android:layout_width="0dp"  		android:layout_height="0dp"  		app:layout_constraintBottom_toBottomOf="parent"  		app:layout_constraintEnd_toEndOf="parent" -		app:layout_constraintStart_toEndOf="@+id/navigationView" -		app:layout_constraintTop_toBottomOf="@+id/appBarLayout2" /> +		app:layout_constraintStart_toStartOf="parent" +		app:layout_constraintTop_toBottomOf="@+id/appBarLayout2"> + +		<androidx.constraintlayout.widget.ConstraintLayout +			android:layout_width="match_parent" +			android:layout_height="match_parent"> + +			<Button +				android:id="@+id/button_orientation_view" +				android:layout_width="0dp" +				android:layout_height="80dp" +				android:layout_marginTop="80dp" +				android:insetLeft="8dp" +				android:insetRight="8dp" +				android:onClick="navigate_orientation" +				android:rotation="-14" +				android:rotationX="-2" +				android:rotationY="-32" +				android:text="oriëntatie" +				android:textSize="34sp" +				app:cornerRadius="0dp" +				app:layout_constraintEnd_toEndOf="parent" +				app:layout_constraintStart_toStartOf="parent" +				app:layout_constraintTop_toTopOf="parent" /> + +			<Button +				android:id="@+id/button_weather_view" +				android:layout_width="0dp" +				android:layout_height="80dp" +				android:layout_marginTop="32dp" +				android:insetLeft="8dp" +				android:insetRight="8dp" +				android:onClick="navigate_weather" +				android:rotation="-39" +				android:rotationX="51" +				android:rotationY="17" +				android:text="weer" +				android:textSize="34sp" +				app:cornerRadius="0dp" +				app:layout_constraintEnd_toEndOf="parent" +				app:layout_constraintStart_toStartOf="parent" +				app:layout_constraintTop_toBottomOf="@+id/button_orientation_view" /> + +			<Switch +				android:id="@+id/db_switch" +				android:layout_width="wrap_content" +				android:layout_height="wrap_content" +				android:rotation="-29" +				android:rotationX="26" +				android:rotationY="26" +				android:scaleX="3" +				android:scaleY="3" +				android:text="aan uit" +				app:layout_constraintBottom_toBottomOf="parent" +				app:layout_constraintEnd_toEndOf="parent" +				app:layout_constraintStart_toStartOf="parent" +				app:layout_constraintTop_toBottomOf="@+id/button_weather_view" +				app:layout_constraintVertical_bias="0.17000002" /> + +		</androidx.constraintlayout.widget.ConstraintLayout> + +	</LinearLayout> -</androidx.constraintlayout.widget.ConstraintLayout> +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/header_navigation_drawer.xml b/app/src/main/res/layout/header_navigation_drawer.xml deleted file mode 100644 index ad01e59..0000000 --- a/app/src/main/res/layout/header_navigation_drawer.xml +++ /dev/null @@ -1,26 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" -    android:layout_width="match_parent" -    android:layout_height="wrap_content" -    android:orientation="vertical"> - -    <TextView -        android:layout_width="wrap_content" -        android:layout_height="wrap_content" -        android:layout_marginStart="24dp" -        android:layout_marginTop="24dp" -        android:layout_marginEnd="24dp" -        android:text="@string/nav_header_title" -        android:textAppearance="?attr/textAppearanceHeadlineSmall" -        android:textColor="?attr/colorOnSurface" /> - -    <TextView -        android:layout_width="wrap_content" -        android:layout_height="wrap_content" -        android:layout_marginStart="24dp" -        android:layout_marginEnd="24dp" -        android:layout_marginBottom="24dp" -        android:text="@string/nav_header_subtitle" -        android:textAppearance="?attr/textAppearanceTitleSmall" -        android:textColor="?attr/colorOnSurfaceVariant" /> -</LinearLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/orientation_demo.xml b/app/src/main/res/layout/orientation_demo.xml new file mode 100644 index 0000000..2b178d3 --- /dev/null +++ b/app/src/main/res/layout/orientation_demo.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" +	xmlns:app="http://schemas.android.com/apk/res-auto" +	xmlns:tools="http://schemas.android.com/tools" +	android:layout_width="match_parent" +	android:layout_height="match_parent"> + +	<TextView +		android:id="@+id/textView" +		android:layout_width="wrap_content" +		android:layout_height="wrap_content" +		android:rotation="45" +		android:rotationX="54" +		android:rotationY="-2" +		android:scaleX="7" +		android:scaleY="6" +		android:text="portrait" +		android:translationX="-30dp" +		android:translationY="-50dp" +		app:layout_constraintBottom_toBottomOf="parent" +		app:layout_constraintEnd_toEndOf="parent" +		app:layout_constraintStart_toStartOf="parent" +		app:layout_constraintTop_toTopOf="parent" /> +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/layout/weather.xml b/app/src/main/res/layout/weather.xml new file mode 100644 index 0000000..99d36df --- /dev/null +++ b/app/src/main/res/layout/weather.xml @@ -0,0 +1,63 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" +	xmlns:app="http://schemas.android.com/apk/res-auto" +	xmlns:tools="http://schemas.android.com/tools" +	android:layout_width="match_parent" +	android:layout_height="match_parent"> + +	<com.google.android.material.appbar.AppBarLayout +		android:id="@+id/appBarLayout2" +		style="@style/Widget.MaterialComponents.AppBarLayout.Primary" +		android:layout_width="0dp" +		android:layout_height="wrap_content" +		android:fitsSystemWindows="true" +		app:layout_constraintEnd_toEndOf="parent" +		app:layout_constraintStart_toStartOf="parent" +		app:layout_constraintTop_toTopOf="parent"> + +		<com.google.android.material.appbar.MaterialToolbar +			android:id="@+id/topAppBar" +			style="@style/Widget.MaterialComponents.Toolbar.Primary" +			android:layout_width="match_parent" +			android:layout_height="match_parent" +			android:background="@android:color/transparent" +			android:elevation="0dp" +			android:keyboardNavigationCluster="true" +			app:navigationIcon="@drawable/arrow_left" +			app:title="weertje" /> + +	</com.google.android.material.appbar.AppBarLayout> + +	<androidx.constraintlayout.widget.ConstraintLayout +		android:layout_width="0dp" +		android:layout_height="0dp" +		android:layout_marginStart="32dp" +		android:layout_marginTop="32dp" +		android:layout_marginEnd="32dp" +		android:layout_marginBottom="32dp" +		app:layout_constraintBottom_toBottomOf="parent" +		app:layout_constraintEnd_toEndOf="parent" +		app:layout_constraintHorizontal_bias="1.0" +		app:layout_constraintStart_toStartOf="parent" +		app:layout_constraintTop_toBottomOf="@+id/appBarLayout2" +		app:layout_constraintVertical_bias="1.0"> + +		<Button +			android:id="@+id/button" +			android:layout_width="0dp" +			android:layout_height="wrap_content" +			android:text="pak dat zonnetje" +			app:layout_constraintEnd_toEndOf="parent" +			app:layout_constraintStart_toStartOf="parent" +			app:layout_constraintTop_toTopOf="parent" /> + +		<ListView +			android:layout_width="0dp" +			android:layout_height="0dp" +			android:layout_marginTop="32dp" +			app:layout_constraintBottom_toBottomOf="parent" +			app:layout_constraintEnd_toEndOf="parent" +			app:layout_constraintStart_toStartOf="parent" +			app:layout_constraintTop_toBottomOf="@+id/button" /> +	</androidx.constraintlayout.widget.ConstraintLayout> +</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file diff --git a/app/src/main/res/menu/navigation_drawer.xml b/app/src/main/res/menu/navigation_drawer.xml deleted file mode 100644 index facc196..0000000 --- a/app/src/main/res/menu/navigation_drawer.xml +++ /dev/null @@ -1,40 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<menu xmlns:android="http://schemas.android.com/apk/res/android"> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_1" -        android:title="@string/gen_1_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_2" -        android:title="@string/gen_2_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_3" -        android:title="@string/gen_3_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_4" -        android:title="@string/gen_4_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_5" -        android:title="@string/gen_5_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_6" -        android:title="@string/gen_6_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_7" -        android:title="@string/gen_7_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_8" -        android:title="@string/gen_8_name" /> -    <item -        android:checkable="true" -        android:icon="@drawable/roman_numeral_9" -        android:title="@string/gen_9_name" /> -</menu> - diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher.xml b/app/src/main/res/mipmap-anydpi/ic_launcher.xml index 6f3b755..52ac069 100644 --- a/app/src/main/res/mipmap-anydpi/ic_launcher.xml +++ b/app/src/main/res/mipmap-anydpi/ic_launcher.xml @@ -1,6 +1,6 @@  <?xml version="1.0" encoding="utf-8"?>  <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> -    <background android:drawable="@drawable/ic_launcher_background" /> -    <foreground android:drawable="@drawable/ic_launcher_foreground" /> -    <monochrome android:drawable="@drawable/ic_launcher_foreground" /> +	<background android:drawable="@drawable/ic_launcher_background" /> +	<foreground android:drawable="@drawable/ic_launcher_foreground" /> +	<monochrome android:drawable="@drawable/ic_launcher_foreground" />  </adaptive-icon>
\ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml index 6f3b755..52ac069 100644 --- a/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml +++ b/app/src/main/res/mipmap-anydpi/ic_launcher_round.xml @@ -1,6 +1,6 @@  <?xml version="1.0" encoding="utf-8"?>  <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android"> -    <background android:drawable="@drawable/ic_launcher_background" /> -    <foreground android:drawable="@drawable/ic_launcher_foreground" /> -    <monochrome android:drawable="@drawable/ic_launcher_foreground" /> +	<background android:drawable="@drawable/ic_launcher_background" /> +	<foreground android:drawable="@drawable/ic_launcher_foreground" /> +	<monochrome android:drawable="@drawable/ic_launcher_foreground" />  </adaptive-icon>
\ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml index c8524cd..fa5fc6f 100644 --- a/app/src/main/res/values/colors.xml +++ b/app/src/main/res/values/colors.xml @@ -1,5 +1,5 @@  <?xml version="1.0" encoding="utf-8"?>  <resources> -    <color name="black">#FF000000</color> -    <color name="white">#FFFFFFFF</color> +	<color name="black">#FF000000</color> +	<color name="white">#FFFFFFFF</color>  </resources>
\ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 15dc34c..35af133 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1,14 +1,4 @@  <resources> -    <string name="app_name">bingo3</string> -    <string name="nav_header_title">Pokédex</string> -    <string name="nav_header_subtitle">Select a generation to display entries from</string> -    <string name="gen_1_name">Red/Green</string> -    <string name="gen_2_name">Gold/Silver</string> -    <string name="gen_3_name">Ruby/Sapphire</string> -    <string name="gen_4_name">Diamond/Pearl</string> -    <string name="gen_5_name">Black/White</string> -    <string name="gen_6_name">X/Y</string> -    <string name="gen_7_name">Sun/Moon</string> -    <string name="gen_8_name">Sword/Shield</string> -    <string name="gen_9_name">Scarlet/Violet</string> +	<string name="app_name">bingo3</string> +	<string name="title_activity_orientation_demo">orientation_demo</string>  </resources>
\ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index db21362..c020a2e 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -1,18 +1,18 @@  <resources xmlns:tools="http://schemas.android.com/tools"> -    <!-- Base application theme. --> -    <style name="Base.Theme.Bingo3" parent="Theme.Material3.DayNight.NoActionBar"> -        <!-- Customize your light theme here. --> -        <!-- <item name="colorPrimary">@color/my_light_primary</item> --> -    </style> +	<!-- Base application theme. --> +	<style name="Base.Theme.Bingo3" parent="Theme.Material3.DayNight.NoActionBar"> +		<!-- Customize your light theme here. --> +		<!-- <item name="colorPrimary">@color/my_light_primary</item> --> +	</style> -    <style name="Theme.Bingo3" parent="Base.Theme.Bingo3" /> +	<style name="Theme.Bingo3" parent="Base.Theme.Bingo3" /> -    <style name="Theme.Bingo3.NoActionBar"> -        <item name="windowActionBar">false</item> -        <item name="windowNoTitle">true</item> -    </style> +	<style name="Theme.Bingo3.NoActionBar"> +		<item name="windowActionBar">false</item> +		<item name="windowNoTitle">true</item> +	</style> -    <style name="Theme.Bingo3.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" /> +	<style name="Theme.Bingo3.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" /> -    <style name="Theme.Bingo3.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" /> +	<style name="Theme.Bingo3.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />  </resources>
\ No newline at end of file diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml index fa0f996..e99ab9e 100644 --- a/app/src/main/res/xml/backup_rules.xml +++ b/app/src/main/res/xml/backup_rules.xml @@ -6,8 +6,8 @@     See https://developer.android.com/about/versions/12/backup-restore  -->  <full-backup-content> -    <!-- -   <include domain="sharedpref" path="."/> -   <exclude domain="sharedpref" path="device.xml"/> +	<!-- + <include domain="sharedpref" path="."/> + <exclude domain="sharedpref" path="device.xml"/>  -->  </full-backup-content>
\ No newline at end of file diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml index 9ee9997..14c561a 100644 --- a/app/src/main/res/xml/data_extraction_rules.xml +++ b/app/src/main/res/xml/data_extraction_rules.xml @@ -4,16 +4,16 @@     for details.  -->  <data-extraction-rules> -    <cloud-backup> -        <!-- TODO: Use <include> and <exclude> to control what is backed up. -        <include .../> -        <exclude .../> -        --> -    </cloud-backup> -    <!-- -    <device-transfer> -        <include .../> -        <exclude .../> -    </device-transfer> -    --> +	<cloud-backup> +		<!-- TODO: Use <include> and <exclude> to control what is backed up. +		<include .../> +		<exclude .../> +		--> +	</cloud-backup> +	<!-- +	<device-transfer> +			<include .../> +			<exclude .../> +	</device-transfer> +	-->  </data-extraction-rules>
\ No newline at end of file |