Recall our Hope/Expectation from the first day of class.
Now fill out this survey...
Lauren Bricker
CSE 340 Winter 23
layout-ii
)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:
layout-ii
using git checkout layout-ii
git add
/git commit
) but don't
git push
(you won't be able to)git stash push
to temporarily store your changes,
then git stash pop
later to get them back*Here are resources on git branches and git conflict resolution
.xml
file..xml
button bar into a "live" View
object.LayoutParams
to lay the button bar out correctly in the parentView
to the parent.layout-ii
)They all want to use tons of memory...
They all want to use tons of memory...
...but they don't need that memory all the time.
What happens when the user closes an application? Does it completely go away?
What happens when the user closes an application? Does it completely go away?
It depends...
What happens when the user closes an application? Does it completely go away?
It depends...
...was it completely unloaded or did it essentially hibernate?
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....
Android: You get no/minimal memory when you're not actively being used.
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: 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!
There are two main types different storage options to save data -
Bundle
is sent back when the activity starts running again.Bundle
is destroyed if the user force quits the app/phone is turned off.More on Activity state and ejection from memory
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
)
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!!!" }}
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
Activity
layer, not to be confused with any individual View
.onSaveInstanceState(Bundle outState)
on the activity, providing a reference to the activity for the app to save values into.onRestoreInstanceState(Bundle savedInstanceState)
returning the same bundle from earlier.(Read more here)
Longer term, persistent storage stay around even if the phone is turned off.
Shared Preferences
Note that the app could write/read its state to longer term storage whenever it is being closed/opened ...
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...
Stores data in persistent internal memory on the phone.
Like Bundle
, also stored in Key Value pairs
SharedPreferences documentation
To see what is in your shared preferences
data data <packagename> for your app, such as cse340.askforhelp shared_prefs <packagename>.PREFERENCES.xml
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;}
Saving to/restoring from the Shared Preferences file.
Example (if we chose to store in SharedPreferences)
// setting dataSharedPreferences.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
Other types you can read/write
editor.putBoolean("key", booleanValue);editor.putInt("key", intValue);editor.putString("key", strintValue);editor.putStringSet(key, stringSetValue);
Lauren Bricker
CSE 340 Winter 23
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 |