Add NotenActivity

Add basic functions for NotenActivity
Some other small changes
This commit is contained in:
BuildTools
2024-03-22 20:01:46 +01:00
parent 1c6c814736
commit fedf52c38e
9 changed files with 330 additions and 11 deletions

View File

@@ -1,6 +1,6 @@
<?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"
@@ -11,7 +11,22 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.CleverClass"
tools:targetApi="31" >
tools:targetApi="31">
<activity
android:name=".FachActivity"
android:exported="false"
android:label="@string/title_activity_fach"
android:theme="@style/Theme.CleverClass" />
<activity
android:name=".NotenActivity"
android:exported="false"
android:label="@string/title_activity_noten"
android:theme="@style/Theme.CleverClass" />
<activity
android:name=".StundenplanActivity"
android:exported="false"
android:label="@string/title_activity_stundenplan"
android:theme="@style/Theme.CleverClass" />
<activity
android:name=".AboutActivity"
android:exported="false"
@@ -31,7 +46,7 @@
android:name=".MainActivity"
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.CleverClass" >
android:theme="@style/Theme.CleverClass">
<intent-filter>
<action android:name="android.intent.action.MAIN" />