2014年2月27日星期四

2014年2月26日星期三

華為 MediaPad M1 8.0 平板

華為在MWC2014展示MediaPad M1 8.0 平板, 運行基於ARM架構的四核心, 1.6GHz處理器, 1GB RAM.
http://consumer.huawei.com/en/tablets/features/s8-301l-en.htm

2014年2月18日星期二

Android應用程序開發入門 (Getting Started)

這裡有一系列教材, 指導如何編程Android設備, 並且提供代碼示例, 從而完成某些特定的任務.

鏈接 http://developer.android.com/training/index.html


2014年2月16日星期日

Android 4.4 KitKat 有什麼新的(廣東話)


在KitKat做了進一步的優化,令Android系統可以在更多設備上運行,尤­其是在小於512MB內存的入門級設備。除此之外,還創建了更多新的APIs,更­好的工具和開發文檔,希望可以幫助開發者創造在不同設備上都能表現良好的應用程序。

以上短片裡面總結了最新Android版本的開發功能,包括介紹新的方法使­您的應用程序更漂亮,新的NFC主機卡模擬功能,全新的印刷和存儲訪問框架,以及低功­耗測步器和計步器等等!

最後請不要忘記遊覽我們完整的Android 4.4 API概述
http://developer.android.com/about/versions/android-4.4.html


2014年2月15日星期六

Google Cast SDK for Android

此視頻介紹如何使用Google Cast SDK開發Google Cast Sender的Android應用程序, 發送內容到例如Chromecast的Google Cast receiver設備.

2014年2月13日星期四

Android 设计指南非官方简体中文版

網站鏈接: http://adchs.github.io/

Android 设计指南非官方简体中文版

2014年2月2日星期日

設置進度條的背景 (Set background of ProgressBar)

一些設置進度條 (ProgressBar) 背景的例子:


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="androidbiancheng.blogspot.com" />

        <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp" />
        
    <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:background="#202020" />

    <ProgressBar
        style="@android:style/Widget.ProgressBar.Horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:max="100"
        android:progress="25" />

    <ProgressBar
        style="@android:style/Widget.ProgressBar.Horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="5dp"
        android:background="#303030"
        android:max="100"
        android:progress="50" />
    
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_margin="20dp"
        android:background="#505050" >

        <ProgressBar
            style="@android:style/Widget.ProgressBar.Horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="20dp"
            android:padding="10dp"
            android:max="100"
            android:progress="80"
            android:background="#606060" />
    </LinearLayout>

</LinearLayout>