File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
java/org/glucosio/android/activity Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 140140 android : name =" android.support.PARENT_ACTIVITY"
141141 android : value =" org.glucosio.android.activity.MainActivity" />
142142 </activity >
143- <activity android : name =" .activity.FreestyleLibre " >
143+ <activity android : name =" .activity.FreestyleLibreActivity " >
144144
145145 <!-- NFC for FreeStyle -->
146146 <intent-filter >
Original file line number Diff line number Diff line change @@ -354,7 +354,7 @@ public void onBackPressed() {
354354 }
355355
356356 public void startLibreActivity () {
357- Intent intent = new Intent (this , FreestyleLibre .class );
357+ Intent intent = new Intent (this , FreestyleLibreActivity .class );
358358 startActivity (intent );
359359 }
360360
Original file line number Diff line number Diff line change 4545import java .io .IOException ;
4646import java .util .Arrays ;
4747
48- public class FreestyleLibre extends Activity {
48+ public class FreestyleLibreActivity extends Activity {
4949
50- private static final String TAG = "Glucosio:FreestyleLibre " ;
50+ private static final String TAG = "Glucosio:FreestyleLibreActivity " ;
5151 private NfcAdapter mNfcAdapter ;
5252 private TextView readingTextView ;
5353 private TextView unitTextView ;
@@ -200,7 +200,7 @@ private void openAddGlucoseActivity() {
200200 bundle .putString ("reading" , currentGlucose + "" );
201201 intent .putExtras (bundle );
202202 startActivity (intent );
203- FreestyleLibre .this .finish ();
203+ FreestyleLibreActivity .this .finish ();
204204 } else {
205205 Intent intent = new Intent (getApplicationContext (), HelloActivity .class );
206206 startActivity (intent );
Original file line number Diff line number Diff line change 8484 android : id =" @+id/activity_freestyle_button_history"
8585 android : layout_width =" wrap_content"
8686 android : layout_height =" wrap_content"
87+ android : visibility =" gone"
8788 android : background =" ?android:attr/selectableItemBackground"
8889 android : textColor =" @color/white"
8990 android : text =" @string/history"
You can’t perform that action at this time.
0 commit comments