Study/Android (73) 썸네일형 리스트형 [Android] Data Binding 활용법 http://gogorchg.tistory.com/entry/Android-DataBinding-findViewById-이제-안녕 예제 http://www.devexchanges.info/2016/09/using-data-binding-with-recyclerview-in.html 추후에 이렇게 변경되어야 할 것 같음 http://blog.trsquarelab.com/2016/01/data-binding-in-android-listview.html [Otto] Event Bus http://gun0912.tistory.com/4 [Android] CoordinatorLayout, RecyclerView http://freehoon.tistory.com/entry/안드로이드안드로이드-CoordinatorLayout-활용-Scrolling-Techniques-CoordinatorLayout-활용-Scrolling-Techniques [Android] ExpandableListView, SwipeListView, Swipe RecyclerView using AndroidSwipeLayout ExpandableListView 안드로이드에서 ListView는 많이들 써보셨을 텐데요. ListView안에 또다른 List가 들어있는 ExpandableListView라는 녀석이 존재 합니다. 기본적으로 ListView를 상속받아 구현한 클래스기 때문에 ListView의 속성과 거의 유사하다고 생각 하시면 됩니다. 생각하실것은 기존의 ListView는 getView하나로 Row를 만들고 사용하였는데 ExpandableListView는 Group 과 Child 의 getView를 각각 구현해 준다는 점만 기억하시면 만드시는데는 큰 문제가 없을 거라고 생각합니다. 자 그럼, ExpandableListView 의 예제를 살펴 보겠습니다. public class TestExpandableListViewAct.. [Android] 구글플레이 스토어에 등록하기 1. 구글에서 로그인 2. https://developer.android.com/index.html 이동 3. 우측 상단에 DEVELOPER CONSOLE 클릭 4. 업데이트할 앱 이름 클릭 5. 좌측 리스트에서 APK 클릭 6. 프로덕션은 배포 베타 테스트는 테스터가 테스트하기 위함으로 테스트한 후에 배포 결정을 할 수 있음 7. 프로덕션 또는 베타 테스트에 APK 업로드하면 완료 [android] webview bridge TEST.java protected class AndroidBridge { public AndroidBridge() {} public String sendIMEI() { TelephonyManager manager = (TelephonyManager) TEST.this.getSystemService(Context.TELEPHONY_SERVICE); String imei = manager.getDeviceId(); mWebView.loadUrl("javascript:getIMEI("+imei+");"); } } TEST.js var imei = ""; function callIMEI() { window.Android.sendIMEI2(); } 출처: http://devian.tistory.com/159 [android] 선, 둥근 백그라운드 그리기 선 그리기 drawable/shape_line.xml layout/main.xml 둥근 백그라운드 그리기 drawable/shape_white_back.xml layout/main.xml solid : 색을 채워 넣는다. padding : 안쪽으로 여백을 준다. corners : 모서리를 둥글게 한다. stroke : 테두리를 준다. [android] map view 위에 풍선 달아주기 BalloonOverlayItem.java public class BalloonOverlayItem extends OverlayItem { public BalloonOverlayItem(GeoPoint geoPoint, String title, String snippet) { super(geoPoint, title, snippet); } } BalloonOverlayView.java public class BalloonOverlayView extends LinearLayout { private LinearLayout layout = null; private TextView title = null; public BalloonOverlayView(Context context, int viewOffset) {.. 이전 1 ··· 6 7 8 9 10 다음