본문 바로가기
728x90

Programing/Android Open Source44

[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.
[Android Open Source] Material-ish Progress https://github.com/pnikosis/materialish-progress A material style progress wheel compatible with 2.3Try the demo app on Google Play:I needed to keep a consistent (or as close as possible) look in an app across all Android Versions. The progress wheel is quite cool in Lollipop, and pretty horrible on Gingerbread.So I created this. This view uses Progress Wheel as a base, but has been almost compl.. 2015. 7. 29.
Android-AdvancedWebView We can't upload the image with default WebView. But you can do this with this library. https://github.com/delight-im/Android-AdvancedWebView AdvancedWebViewAdvanced WebView component for Android that works as intended out of the boxWorks on Android 2.2+ (API level 8 and above)InstallationInclude one of the JARs in your libs folderorCopy the Java package to your project's source folderorCreate a .. 2015. 5. 6.
Android ActivitySceneTransitionBasic Sample This sample shows how to use scene transitions from one Activity to another in Lollipop. Uses a combination of changeImageTransform and changeBounds to transition a grid of images to an Activity with a large image and detail text.IntroductionAndroid Lollipop has introduced the ability to transition between activities by using a shared element. This sample demonstrates how to do this using the th.. 2015. 4. 30.
Android ActionBarCompat-ListPopupMenu Sample This sample shows how to display a pop up menu using PopupMenu from the v7 appcompat library.IntroductionThis sample displays a list of items and for each item, an icon can be clicked. When it is clicked, a pop up menu is shown, placed below the item, using the PopupMenu from the v7 appcompat support library.The sample uses ListFragment from the v4 support library to display the list. It shows h.. 2015. 4. 30.
LDrawer - Android drawer icon with material design animation Android drawer icon with material design animationNoteBasically same as appcompat_v7 version 21, you can use appcompat_v7compile 'com.android.support:appcompat-v7:21.0.+' @style/ActionBar @style/AppTheme.DrawerArrowToggle @android:color/white Downloadvia Maven: com.ikimuhendis ldrawer 0.1 or Gradle:compile 'com.ikimuhendis:ldrawer:0.1' UsageYou can use like using normal drawer, instead of usinga.. 2015. 4. 30.
728x90