목록Develop (263)
woong's
android TextInputLayout & AppCompatEditText 사용 하기 안녕하세요. 본 샘플은 커니님의 샘플앱을 하나하나 분석하여 만든 샘플 입니다.커니님의 EditText를 분리 하여 분석해 보았습니다. 새로이 추가된 TextInputLayout 를 통해서 움직이는 EditText를 만들수 있습니다. 아래 이미지와 같이 선택전에는 hint가 있고 선택시 hint가 EditText 위로 이동하는 애니메이션을 볼 수 있습니다.또한 editText 를 입력 하지 않았을때 에러 메세지 표시 기능도 추가 된것 같습니다. 2.준비 1 2 3 4 5 dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.andro..
Android 머티리얼 + 최신 UI 모음 https://github.com/wasabeef/awesome-android-uiwasabeef/awesome-android-uiawesome-android-ui - A curated list of awesome Android UI/UX librariesgithub.com
android tab IndicatorColor 색상 변경하기 안녕하세요.android 기본 tab IndicatorColor 의 색상을 변경 하려 시도 해보았습니다.과거의 나인패ㅣ 이미지 , 스타일 바꾸는 방법이 있지만 굉장히 복잡하고 제한적인것 같습니다. 코드가 검색해 보아도 나오지 않아 구글 샘플 코드를 보니 코드가 있어 이렇게 포스트 하고 있습니다. 12345678910111213 mSlidingTabLayout.setCustomTabColorizer(new SlidingTabLayout.TabColorizer() { @Override public int getIndicatorColor(int position) { return Color.WHITE; } @Override public int get..
Android SearchView 사용하기 안녕하세요. 이번 toolbar 를 사용하게 되면서 검색기능을 searchView 로 이용해 보았습니다 .간단한 코드로 이쁜 search뷰가 구성이 되어서 포스팅 해보려 합니다 . 1. menu Item 추가 1 2 3 4 5 6 7 8 9 10 11 12 13 Colored by Color Scripter cs xml 에 메뉴 속성을 SearchView 를 사용하면 화면에 구성 할 수 있습니다 . 2. ment 추가 1 2 3 4 @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.menu_main, menu); } Colored by Color Sc..
Android notification 선택시 데이터 전달 하기 notification 을 통해서 선택시 액티비티에 데이터를 넘길 경우 단일의 notification 은 잘 되지만 ,다중의 notification 은 하나의 데이터가 중복으로 넘어가는 것을 확인 할 수 있습니다. 1PendingIntent pendingIntent = PendingIntent.getActivity(context, requestCode, Intent intent , int flags)cs 위 코드 에서 PendingIntent 설정시 requestCode 를 달리 주면 의도한 데이터가 잘 넘어가는 것을 확인 할 수 있습니다. 동일한 requestCode 가 같은 경우 마지막 PendingIntent 로 치환 하기 때문에이와 ..
Android Notification 여러개 사용하기 notification 이 여러개 발생 할때 , 중복으로 겹쳐서 하나만 나와서 찾아 보니 notify id 를 다르게 부여해 주어야 여러개의 notification 을 확인 할 수 있습니다. 1notificationManager.notify(int id , Notification notification);cs 위 코드에서 첫번째 파라미터의 값을 동일 하지 않게 넣어주시면 여러개의 notification 을 볼 수 있습니다.
Android ResideMenu 사용하기 좋은 라이브러리가 있어 포스트를 쓰고 있습니다.아이폰 ui 로 많이 사용하는 ui인데 , 코드도 깔끔하고 퍼포먼스도 좋아 사용 방법에 대해포스트 해보려 합니다. https://github.com/SpecialCyCi/AndroidResideMenu 1. 라이브러리 사용 준비 -home build.gradle repository 추가 1 2 3 repositories { mavenCentral() } cs -app build.gradle dependency 추가 1 2 3 4 5 6 ependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat..
Android 최신 ui 사용 포스트 최근에 많이 이용되고 있는 UI 잘 정리하신분이 있어 포스팅 합니다. http://www.andevcon.com/news/46-android-developer-libraries-by-category46 Android Developer Libraries by Category46 Android Developer Libraries by Category, including Animations, Text, User Interaction, and more.www.andevcon.com
Android RecyclerView ItemClcik 하기 android RecyclerView 은 listView 에서 사용한 OnItemClcikLister 가 없습니다.제스쳐를 통해서 하는 방법과 ViewHolder를 사용한 방법이 있습니다. 저는 아래와 같이 ViewHolder를 사용한 방식을 사용해 보았습니다. 123456789101112131415161718192021222324public static class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener { public ImageView img; public TextView textTitle; public TextView textContent; pub..
Android RecyclerView 속성 사용하기 전 포스트에서 recyclerView 에 대해서 말씀 드렸습니다.전포스트에서는 간단하게 리스트뷰와 같은 화면을 만들었는데 , 그화면에서 속성 몇가지를이용해서 유연한 구조를 사용해 보려 합니다. 1. LayoutManager - LinearLayoutManager : 수직/ 수평 레이아웃 구성- GridLayoutManager : 바둑판 배열 레이아웃 구성- StaggeredGridLayoutManager : 높이가 불규칙한 레이아웃 구성 이와 같이 세종류 레이아웃이 있습니다.입맛에 따라 선택해서 사용하면 됩니다. 저는 위 StaggeredGridLayoutManager 사용해 보도록 하겠습니다. 1 2 StaggeredGridLayoutManager l..