AIbridge 라이브러리 간단한 적금앱, tinyDB 사용해서 간단하게 저장, 불러오기

라이브러리를 추가 해주기 http://www.appinventor.org/content/java-bridge/introduction/intro-android-studio <- 다운로드 위치 // you need the following imports in all Java Bridge apps //저의 깃헙 주소 : https://github.com/ndgndg91 import com.google.appinventor.components.runtime.Button; import com.google.appinventor.components.runtime.Component; import com.google.appinventor.components.runtime.EventDispatcher; import com.google.appinventor.components.runtime.Form; import com.google.appinventor.components.runtime.HandlesEventDispatching; import com.google.appinventor.components.runtime.HorizontalArrangement; import com.google.appinventor.components.runtime.Label; import com.google.appinventor.components.runtime.ListPicker; import com.google.appinventor.components.runtime.TextBox; import com.google.appinventor.components.runtime.TinyDB; import java.util.regex.*; // import any components you are going to use in your app. In this case, just Button // you can use the following header for all apps ...