發表文章

目前顯示的是有「android」標籤的文章

The best jQuery plugin for creating side menus and the easiest way for doing your menu responsive

圖片
The best jQuery plugin for creating side menus and the easiest way for doing your menu responsive (Yes, I like the way Facebook implements its menu on mobile) By Alberto Varela Download You will be able to create multiple sidrs on both sides of your web to make responsives menus (or not, it works perfectly on desktop too). Fill the sidrs normally, with existent content, remote content,... or what you want. Source from : http://www.berriart.com/sidr/

Android 4.4 Kit Kat

圖片
Nexus 5 with Android 4.4 in Kit Kat 

How to Enable Developer Settings in Android 4.2

Here is a quick instructions guide on how to get those developer settings back on your new Android phone with Android 4.2 on it. Step 1 - Go to Settings > About phone. Step 2 - Scroll down to the bottom to “Build number.” Step 3 - Tap “Build number” five times. You will see a dialogue box that says you are only four taps away from being a developer. Continue tapping four (4) more times. Step 4 - Developer options will be under Settings are back!

[Android development] How to use View Pager

圖片
This example shows how you can create an image pager in android. Algorithm: 1.) Create a new project by File-> New -> Android Project name it ViewPagerExample. 2.) Write following into main.xml: 1 2 3 4 5 6 7 8 9 10 11 12 13 <?xml version= "1.0" encoding= "utf-8" ?> <LinearLayout xmlns:android= " http://schemas.android.com/apk/res/android "      android:layout_width= "fill_parent"      android:layout_height= "fill_parent"      android:orientation= "vertical" >      <android.support.v4.view.ViewPager          android:id= "@+id/pager"          android:layout_width= "match_parent"          android:layout_height= "match_parent"           /> </LinearLayout...