Browse Source

added month and process

Simon Hammer 3 years ago
parent
commit
020a341aa1
4 changed files with 49 additions and 4 deletions
  1. 18 0
      diary/2021/2021_07.tex
  2. 20 0
      diary/2021/2021_08.tex
  3. 9 4
      diary/dictionary.tex
  4. 2 0
      diary/main.tex

+ 18 - 0
diary/2021/2021_07.tex

@@ -32,3 +32,21 @@ getSupportFragmentManager()
                         .commit();
                         .commit();
 
 
 I can replace an old Fragment, without knowing the ID of it, with the new one in de SettingsFragment() class.
 I can replace an old Fragment, without knowing the ID of it, with the new one in de SettingsFragment() class.
+
+
+\def\day{\textit{Juli 19st, 2021 Simon}}
+\def\weekday{\textit{Monday}}
+\subsection*{\weekday, \day}
+
+Today I had success in adding settings to the app. 
+I used this Tutorial an added the .SettingsAvtivity to the AndroidManifesf with this line 
+
+<activity android:name=".ui.home.SettingsActivity"/>
+
+https://www.geeksforgeeks.org/how-to-implement-preferences-settings-screen-in-android/
+
+And I put every raw text into the String file. 
+I wanted to do the same with the dimens but we are not shure how we make the default layout sizes 
+so i thought i might leave it for now.
+
+

+ 20 - 0
diary/2021/2021_08.tex

@@ -0,0 +1,20 @@
+\begin{center}
+\section*{\month}
+\end{center}
+
+
+\def\day{\textit{August 11st, 2021 Simon}}
+\def\weekday{\textit{Wednesday}}
+\subsection*{\weekday, \day}
+
+I started a Database branch and the day befor I read the Database from InboxPager and read the Book. 
+I finished the fist 4 chapters and i think chapter 11 and 9
+
+
+
+\def\day{\textit{August 12st, 2021 Simon}}
+\def\weekday{\textit{Thursday}}
+\subsection*{\weekday, \day}
+
+Today Noah and I want to find the best Database and IMAP Libarys 
+and make some tests to add data from a file in the Adapter and the recyclerviewer

+ 9 - 4
diary/dictionary.tex

@@ -103,13 +103,18 @@ making them only accessible within the declared class.
 super
 super
 super referes to the parent class and use the construktor from parent class
 super referes to the parent class and use the construktor from parent class
 
 
+final
+A final viriable is not cheable, a final method can't be overriden, a final class can't be extended, 
+a final variable has to be Initialized in the constructor.
 
 
 
 
+instanceof
+checks if a variable is type of the following, it returns boolean
 
 
-
-
-
-
+System.gc()
+The java.lang.System.gc() method runs the garbage collector. 
+Calling this suggests that the Java Virtual Machine expend effort 
+toward recycling unused objects in order to make the memory they currently occupy available for quick reuse.
 
 
 
 
 
 

+ 2 - 0
diary/main.tex

@@ -33,5 +33,7 @@
 \def\month{Juli}
 \def\month{Juli}
 \include{./2021/2021_07}
 \include{./2021/2021_07}
 
 
+\def\month{August}
+\include{./2021/2021_08}
 
 
 \end{document}
 \end{document}