Advertisement
dartwlad

Untitled

Jan 9th, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.61 KB | None | 0 0
  1.         final TextView value_textView1 = (TextView) findViewById(R.id.min_value_textView);
  2.         if(value_textView1 != null)
  3.         {
  4.             value_textView1.setText(getApplicationContext().getSharedPreferences("appdroid", Context.MODE_PRIVATE)
  5.                     .getInt("min_value", 0));
  6.         }
  7.         final TextView value_textView2 = (TextView) findViewById(R.id.max_value_textView);
  8.         if(value_textView2 != null)
  9.         {
  10.             value_textView2.setText(getApplicationContext().getSharedPreferences("appdroid", Context.MODE_PRIVATE)
  11.                     .getInt("max_value", 10));
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement