Time of Update: 2016-09-08
Android 多媒體播放API簡介,androidapi本文調用android的媒體播放器實現一些音樂播放操作項目布局:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
Time of Update: 2016-09-09
SharePreference 工具類封裝,sharepreference封裝import java.util.List;import java.util.Map;import java.util.Set;import com.alibaba.fastjson.JSON;import android.annotation.SuppressLint;import android.annotation.TargetApi;import android.content.Context;import
Time of Update: 2016-09-08
Android事件匯流排,android匯流排Android中Activity、Service、Fragment之間的相互連信比較麻煩,主要有以下一些方法:(1)使用廣播,寄件者發出廣播,接收者接收廣播後進行處理;(2)使用Handler和Message,如下載線程完成下載任務後,給UI發送Message,UI收到Message後更新介面。但是這些方法都比較繁瑣,一種比較簡單有效方法就是使用事件匯流排。事件匯流排的基本原理是寄件者把訊息發送到事件匯流排,然後事件匯流排在接收者中尋找哪些方法註冊了
Time of Update: 2016-09-08
Android Studio —— 建立Menu功能表項目,androidmenu大多數android程式的右上方都會設定一個功能表按鈕比如的介面右上方的加號。這個需要在layout同級目錄下建立檔案夾命名為menu,再右擊建立的menu建立xml檔案:xml檔案代碼:<menu xmlns:android="http://schemas.android.com/apk/res/android"
Time of Update: 2016-09-08
Android 播放線上視頻,android線上視頻首先開啟電腦上的tomcat,將視頻檔案放在Tomcat 7.0\webapps\ROOT中不用修改代碼,直接輸入地址即可,運行如下:播放線上視頻,必須要求手機支援當前的格式,才可以播放播放的原理:分段的下載伺服器上的資源進入緩衝2.3版本的android對流媒體的協議支援不是很完善,4.0以後的對絕大多數的流媒體協議的支援
Time of Update: 2016-09-08
安卓中自訂並使用Volley架構請求網路,安卓中volley 大家好,今天我們講一下如何使用Volley架構請求網路,為何要使用Volley架構,這就要先說一下使用Volley架構請求網路的優點了,volley是易於定製的,即你可以根據需求來設定volley架構,還有volley架構支援要求的優先順序設定,即你可以自主設定網路請求的優先順序,還有就是volley架構請求支援取消單個或多個請求,這個一會佈建要求的時候會特別說明,還有它可以自動調度網路請求,至於其他的如代碼的健壯性、支援多並發等等
Time of Update: 2016-09-08
Android
Time of Update: 2016-09-08
Android與JS之間跨平台非同步呼叫,androidjs非同步 為什麼突然要搞這個問題呢? 在開發瀏覽器的時候遇到這個狗血的問題,花了將近1天的時間才想到這個解決方案,Android與JavaScirpt互調。 因為介面是抓取的別人的,所以出現了JS跨域問題,Android閃亮登場搞定了。 GIF動畫示範 WebView相關設定WebSettings mWebSettings =
Time of Update: 2016-09-07
Android
Time of Update: 2016-09-07
Eclipse出現"Running Android Lint has encountered a problem"解決方案,androidlint 安裝eclipse for android
Time of Update: 2016-09-08
淺談FloatingActionButton(懸浮按鈕),floatingactionbutton一、介紹這個類是繼承自ImageView的,所以對於這個控制項我們可以使用ImageView的所有屬性android.support.design.widget.FloatingActionButton 二、使用準備, 在as 的 build.grade檔案中寫上compile
Time of Update: 2016-09-07
Android 圖片的平移和鏡面和倒影效果,在前面的文章中陸續介紹了圖片的旋轉與縮放,本文繼續介紹關於圖片的操作圖片的平移使用下面的代碼將圖水平豎直方向平移10個像素matrix.setTranslate(10, 10);可以看到圖片不完整,需要修改代碼:// 建立一個bitmapBitmap alterBitmap = Bitmap.createBitmap(bitmap1.getWidth() * 2, bitmap1.getHeight() * 2,
Time of Update: 2016-09-08
Android 視頻播放器進度的處理,android進度在前面的項目中添加SeekBar <SeekBar android:id="@+id/sb" android:layout_width="match_parent" android:layout_height="wrap_content" />相關的代碼如下:public class MainActivity extends Activity implements
Time of Update: 2016-09-08
AndroidStudio使用過程中出現的異常,androidstudio過程異常資訊: Gradle sync failed: Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon. For example, an unrecognized jvm option is used.
Time of Update: 2016-09-07
Android 圖片的顏色處理,仿造美圖秀秀移動滑鼠調整seekbar,調整圖片的顏色項目布局如下:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
Time of Update: 2016-09-08
Android 調用系統照相機拍照和錄影,android照相機本文實現android系統照相機的調用來拍照項目的布局相當簡單,只有一個Button:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
Time of Update: 2016-09-07
Android 圖片的合成,本文實現在Android片的合成布局設計比較簡單:<RelativeLayout 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"
Time of Update: 2016-09-07
android 自訂通知欄,android自訂通知package com.example.mvp;import cn.ljuns.temperature.view.TemperatureView;import presenter.ILoginPresenter;import presenter.LoginPresenterCompl;import android.os.Bundle;import android.app.Activity;import
Time of Update: 2016-09-07
安卓中實現介面資料懶載入,安卓中介面載入 大家在使用手機新聞用戶端的時候就會有一個發現,大多數的新聞用戶端都會把新聞分類,諸如頭條、娛樂、體育、科技等等,如何?這種介面的呢?這個實現起來其實很簡單,就是在一個Fragment中實現多個ViewPage的切換,再在ViewPage的上面放一個TabLayout,關聯起來就可以實現聯動效果。如果大家感覺不太明了的話,以後我可以專門寫一篇關於Fragment中放入多個ViewPage的部落格,今天,我主要介紹的是怎樣實現介面即Fragment的懶載入
Time of Update: 2016-09-07
Android自訂標題TitleView,androidtitleview Android開發過程中,經常遇到一個項目需要重複的定義相同樣式的標題列,Android相繼推出了actionBar, toolBar, 相信有用到的朋友也會遇到一些不如意的時候,比如標題列置中時,需要自訂xml檔案給toolBar等,不瞭解actionBar,toolBar的可以去找相應的文章瞭解,這裡介紹自訂titleBar滿足國內主題風格樣式的情況。