+ -
Notes for current slide
Notes for next slide

Warm up:

Recall our Hope/Expectation from the first day of class.

Now fill out this survey...

Slide 1 of 27

Storage

Lauren Bricker

CSE 340 Winter 23

Slide 2 of 27

Today's goals

  • Administrivia
    • Layout part 3-4 & reflection due Thur 26-Jan
    • Practice quiz 3 out, due Sunday 10pm
  • Quick Layout demo with Spot the Heron (branch: layout-ii)
  • Questions on last of Properties of People - Vision?
  • Storage
    • Bundles
    • Shared Preferences
  • Android Security
Slide 3 of 27

Demo of Programatic Layout

One thing that we didn't cover well is how to set up layout params/constraints programatically. So let's demo it now! To follow along:

  1. Clone Spot the Heron if you have not already
  2. Switch to branch layout-ii using git checkout layout-ii
    • If you made changes and it complains about conflicts you may need to
      • commit your changes to your local repo (git add/git commit) but don't git push (you won't be able to)
      • do a git stash push to temporarily store your changes, then git stash pop later to get them back*
      • re-clone STH in a different directory

Here are resources on git branches and git conflict resolution

Slide 4 of 27

Recap

  • We created a toolbar in a separate .xml file.
  • We used the inflater to turn the .xml button bar into a "live" View object.
  • We created LayoutParams to lay the button bar out correctly in the parent
  • We found the main parent view by it's id.
  • We attached the button bar View to the parent.
Slide 5 of 27

Today's goals

  • Administrivia
    • Layout part 3-4 & reflection due Thur 26-Jan
    • Practice quiz 3 out, due Sunday 10pm
  • Quick Layout demo with Spot the Heron (branch: layout-ii)
  • Questions on last of Properties of People - Vision?
  • Storage
    • Bundles
    • Shared Preferences
  • Android Security
Slide 6 of 27

So you got lots of apps..

Slide 7 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

Slide 8 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

They all want to use tons of memory...

Slide 8 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

They all want to use tons of memory...

...but they don't need that memory all the time.

Slide 8 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

What happens when the user closes an application? Does it completely go away?

Slide 9 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

What happens when the user closes an application? Does it completely go away?

It depends...

Slide 9 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

What happens when the user closes an application? Does it completely go away?

It depends...

...was it completely unloaded or did it essentially hibernate?

Slide 9 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

What happens when the user closes an application? Does it completely go away?

It depends...

...was it completely unloaded or did it essentially hibernate?

However....

Slide 9 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

Android: You get no/minimal memory when you're not actively being used.

Slide 10 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

Android: You get no/minimal memory when you're not actively being used.

Apps: But wait! You took away my memory, all my variables are GONE 😲. How do I remember things when I am being used if you take away my memory?

Slide 10 of 27

So you got lots of apps..

Android Activity Lifecycle which shows when the operating system starts; pauses and kills android processes

Android: You get no/minimal memory when you're not actively being used.

Apps: But wait! You took away my memory, all my variables are GONE 😲. How do I remember things when I am being used if you take away my memory?

Android: Store it!

Slide 10 of 27

Storage options

There are two main types different storage options to save data -

  • Short term volatile memory
    • Data that goes away when the phone is turned off
  • Long term memory
    • Data that can be recovered when the phone is turned off and back on
Slide 11 of 27

Short Term Storage option

Bundle

  • Usually stores a small amount of data
  • Saved RIGHT before the memory is cleared.
  • Typically used when you want to safely transfer data between activities or between an activity and a fragment.
  • The Bundle is sent back when the activity starts running again.
  • A Bundle is destroyed if the user force quits the app/phone is turned off.

More on Activity state and ejection from memory

Slide 12 of 27

What is in the Bundle?

You, the application developer, decides what needs to be stored

Values are mapped to unique KEYS (for set/retrieve)

The Bundle is like a Map<String, Object> that only supports Serializable objects (like primitives and String)

Slide 13 of 27

Bundles: Code Example

public abstract class MainActivity extends AppCompatActivity {
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
outState.putString("OUR_KEY", "bundles? bundles!!!");
}
@Override
protected void onRestoreInstanceState(Bundle savedInstanceState) {
super.onRestoreInstanceState(savedInstanceState);
String whatWeSaved = savedInstanceState.getString("OUR_KEY");
// whatWeSaved would contain "bundles? bundles!!!"
}
}
Slide 14 of 27

Modifying Doodle

To save which Tab/Activity shown in Doodle we could modify AbstractMainActivity.java to store it in a Bundle

protected static final String CURRENT_TAB_ID_KEY = "ACTIVITY_TAB_ID";
private TabView mNav = findViewById(R.id.bottom_nav);
protected void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
// Get the current tab id, and store it with CURRENT_TAB_ID_KEY
outState.putInt(CURRENT_TAB_ID_KEY, getTabId());
}
protected void onRestoreInstanceState(Bundle outState) {
// get the tab from the bundle at CURRENT_TAB_ID_KEY, defaulting to
// R.id.action_part_1 & set the nav accordinly!
int current = outState.getInt(CURRENT_TAB_ID_KEY, R.id.action_part_1);
mNav.setSelectedItemId(current);
}

We will see this more in Accessibility

Slide 15 of 27

Bundles & Code

  • Bundle management is occuring at the Activity layer, not to be confused with any individual View.
  • When the user closes the app, right before it closes and its memory is cleared, Android invokes onSaveInstanceState(Bundle outState) on the activity, providing a reference to the activity for the app to save values into.
  • When the user opens the app again, Android invokes onRestoreInstanceState(Bundle savedInstanceState) returning the same bundle from earlier.

(Read more here)

Slide 16 of 27

Bundles & Code

  • Bundle data is transient - it will go away if the app is completely unloaded from memory.
    • Typically small amounts of data.
    • Used to share information between activities.
Slide 17 of 27

How can we store things for longer??!?!?

Slide 18 of 27

Long Term Storage

Longer term, persistent storage stay around even if the phone is turned off.

Shared Preferences

  • Store private primitive data in key-value pairs. Internal Storage
  • Store private data on the device memory. External Storage
  • Store public data on the shared external storage. SQLite Databases
  • Store structured data in a private database. Network Connection
  • Store data on the web with your own network server.

From Android documentation

Slide 19 of 27

Long Term Storage

Note that the app could write/read its state to longer term storage whenever it is being closed/opened ...

Slide 20 of 27

Long Term Storage

Note that the app could write/read its state to longer term storage whenever it is being closed/opened ...

... but that is time consuming and would delay the OS launching new things...

Slide 21 of 27

Shared Preferences

Stores data in persistent internal memory on the phone.

Like Bundle, also stored in Key Value pairs

SharedPreferences documentation

Slide 22 of 27

Shared Preferences

To see what is in your shared preferences

  1. start the Device File Explorer (View->Tool windows->Device File Explorer)
  2. Use the toggles to open up the following folders
data
data
<packagename> for your app, such as cse340.askforhelp
shared_prefs
<packagename>.PREFERENCES.xml
Slide 23 of 27

Shared Preferences

Creating the Shared Preferences File

protected SharedPreferences getPrefs() {
if ( mSharedPreferences == null ) {
try {
Context context = getApplicationContext();
mSharedPreferences = context.getSharedPreferences(context.getPackageName() + ".PREFERENCES",
Context.MODE_PRIVATE);
} catch (Exception e) {
//failed to edit shared preferences file
showToast(R.string.shared_pref_error);
}
}
return mSharedPreferences;
}
Slide 24 of 27

Shared Preferences

Saving to/restoring from the Shared Preferences file.

Example (if we chose to store in SharedPreferences)

// setting data
SharedPreferences.Editor editor = getPrefs().edit();
editor.putInt(CURRENT_TAB_ID_KEY, mTabId);
editor.apply(); // have to force the write.
// getting data, the last parameter is the default.
mTabId = getPrefs().getInt(CURRENT_TAB_ID_KEY, 1);

We will see this in Accessibility

Slide 25 of 27

Shared Preferences

Other types you can read/write

editor.putBoolean("key", booleanValue);
editor.putInt("key", intValue);
editor.putString("key", strintValue);
editor.putStringSet(key, stringSetValue);
Slide 26 of 27

END OF DECK

Slide 27 of 27

Storage

Lauren Bricker

CSE 340 Winter 23

Slide 2 of 27
Paused

Help

Keyboard shortcuts

, , Pg Up, k Go to previous slide
, , Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
s Start & Stop the presentation timer
t Reset the presentation timer
?, h Toggle this help
Esc Back to slideshow