Android Open Source11 Google Android Volley HTTP Library Google Volley Library Google I/O 2013에서 처음 발표 된 Volley Library는 굉장히 강한 자부심을 가지고 Google에서 소개한 Http 라이브러리입니다. 효율적인 병행 처처, 재시도, 백오프 정책, 캐시, 이미지 로더, 우선순위 설정 및 요청 취소등의 다양한 기능등을 제공하면서 강력한 HTTP Library라는 점을 강조하였습니다. 쉽게 이야기 하면 Side Effect도 없고, Code Line도 Simple하게 구현이 가능하게 제공을 한다는 것입니다. [Volley란 무엇인가?]Volley는 테니스나 발리볼의 발리를 연상하게 하고, 클라이언트가 넷 넘어로 서버에 요청을 쏘면 그것이 돌아온다는 은유가 되기도 합니다.( a client sends a request .. 2017. 7. 19. [Android Open Source][Material] MaterialViewPager https://github.com/florent37/MaterialViewPager Material Design ViewPager easy to use librarySampleYou can find a sample APK : LinkAnd have a look on a sample Youtube Video : Youtube LinkDownloadIn your module compile ('com.github.florent37:materialviewpager:1.0.8@aar'){ transitive = true }UsageAdd MaterialViewPager to your activity's layoutwith header_logo.xml You will see on Android Studio Prev.. 2015. 7. 29. [Android Open Source] ChipsLibrary https://github.com/AndroidDeveloperLB/ChipsLibrary This is a fork of Google's chips library shown here, and can be downloaded from hereWhat's different from the original library :It's easy to import and build on Eclipse. :)Removed buggy dragging feature and the classes it uses.fixed setOnItemClickListener (for clicking on chips) so that it will use both the chips library's logic AND your code.Re.. 2015. 7. 29. [Android Open Source][ListView] ListViewVariants https://github.com/AndroidDeveloperLB/ListViewVariants Provides special ways to handle ListViews, including PinnedHeaderListView in Lollipop's Contacts-app styleScreenshotHere's a screenshot of how it shows the contacts of the device, very similar to how Lollipop's Contacts-app shows it , except for the blur, which I've added myself ... :)RequirementsThe min API level is 8.Also, in case you wish.. 2015. 7. 29. [Android Open Source][ListView] FlabbyListView https://github.com/jpardogo/FlabbyListView Android library to display a ListView which cells are not rigid but flabby and react to ListView scroll and touch events.A video example of this library is on this youtube video. The demo app can be found on the play store. And I also wrote a blog post about this library in my blog Usage1.Place the FlabbyListView on your layout: 2.Populate it with items.. 2015. 7. 29. [Android Open Source][ListView] PinnedSectionListView https://github.com/beworker/pinned-section-listview IntroductionEasy to use ListView with pinned sections for Android 2.1 and higher. Pinned section is a header view which sticks to the top of the list until at least one item of that section is visible. FeaturesThis list properly implements many features which are missing from other implementations. These areFast scrollHeaders and footersClickab.. 2015. 7. 29. [Android Open Source][ListView] ListViewAnimations https://github.com/nhaarman/ListViewAnimations ListViewAnimations is an Open Source Android library that allows developers to easily create ListViews with animations. Feel free to use it all you want in your Android apps provided that you cite this project and include the license in your app.FeaturesListViewAnimations provides the following features:Appearance animations for items in ListViews, .. 2015. 7. 29. [Android Open Source] ActionSheet https://github.com/baoyongzhang/android-ActionSheet This is like iOS UIActionSheet component, has iOS6 and iOS7 style, support custom style, background, button image, text color and spacing etc. UsageAdd dependencydependencies { compile 'com.baoyz.actionsheet:library:1.1.1' }Create ActionSheet and showActionSheet.createBuilder(this, getSupportFragmentManager()) .setCancelButtonTitle("Cancel") .s.. 2015. 7. 29. [Android Open Source] PullRefreshLayout https://github.com/baoyongzhang/android-PullRefreshLayout This component like SwipeRefreshLayout, it is more beautiful than SwipeRefreshLayout.DemoUsageAdd dependency.dependencies { compile 'com.baoyz.pullrefreshlayout:library:1.0.1' } Use method like SwipeRefreshLayout's usage.Use it in your layout xml. Get instance and use it.PullRefreshLayout layout = (PullRefreshLayout) findViewById(...); //.. 2015. 7. 29. [Android Open Source][ListView] SwipeMenuListView https://github.com/baoyongzhang/SwipeMenuListView A swipe menu for ListView.DemoUsageAdd dependencydependencies { compile 'com.baoyz.swipemenulistview:library:1.2.1' }Step 1add SwipeMenuListView in layout xmlStep 2create a SwipeMenuCreator to add items.SwipeMenuCreator creator = new SwipeMenuCreator() { @Override public void create(SwipeMenu menu) { // create "open" item SwipeMenuItem openItem =.. 2015. 7. 29. [Android Open Source] Sweet Alert Dialog https://github.com/pedant/sweet-alert-dialog SweetAlert for Android, a beautiful and clever alert dialog中文版Inspired by JavaScript SweetAlertDemo DownloadScreenShotSetupThe simplest way to use SweetAlertDialog is to add the library as aar dependency to your build.Maven cn.pedant.sweetalert library 1.3 aar Gradlerepositories { mavenCentral() } dependencies { compile 'cn.pedant.sweetalert:library:1.. 2015. 7. 29. 이전 1 다음