当前位置:  编程技术>移动开发
本页文章导读:
    ▪自定义ActionBar的indeterminateProgress式样        自定义ActionBar的indeterminateProgress样式 Android中加载数据时可以在ActionBar上显示一个无限转动的进度圈,称为IndeterminateProgressBar。可以简单通过以下方式实现。 在Activity的onCreate方法中调用   re.........
    ▪ 一鍙蜂俊浠ゃ€?鍙蜂俊浠ゅ拰PRI淇′护        1鍙蜂俊浠ゃ€?鍙蜂俊浠ゅ拰PRI淇′护 闅忚矾淇′护锛圕AS:Channel Associated Signaling锛夛細淇′护鍜岃瘽闊冲湪鍚屼竴鏉¤瘽璺腑浼犻€佺殑淇′护鏂瑰紡銆傜洰鍓嶆垜鍥介噰鐢ㄧ殑闅忚矾淇.........
    ▪ 有效的减小应用占用的空间——使用系统资源       有效的减少应用占用的空间——使用系统资源 做安卓开发的,是不是总想把自己的应用做的足够强大,但空间足够小?可以需求方又要求很炫的效果,怎么办? 其实系统自带了很多风格的.........

[1]自定义ActionBar的indeterminateProgress式样
    来源: 互联网  发布时间: 2014-02-18
自定义ActionBar的indeterminateProgress样式

Android中加载数据时可以在ActionBar上显示一个无限转动的进度圈,称为IndeterminateProgressBar。可以简单通过以下方式实现。

在Activity的onCreate方法中调用

 

requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
 //使用ActionBarSherlock适配2.x系统时Window类应为com.actionbarsherlock.view.Window

 

 

开始加载数据时调用

 

setProgressBarIndeterminateVisibility(true);
 //使用ActionBarSherlock适配2.x系统时调用setSupportProgressBarIndeterminateVisibility(true);

 

 

数据加载完成时调用

 

setProgressBarIndeterminateVisibility(false);
 //使用ActionBarSherlock适配2.x系统时调用setSupportProgressBarIndeterminateVisibility(false);

 

 

但是默认的情况下出来的进度圈有点大(见下图)。这时候就需要自定义这个IndeterminateProgressBar的样式。



 

 

 1. 对4.0以上的系统,可以在styles.xml中自定义ActionBar indeterminateProgresss的样式如下。

 

<style name="Theme.App" parent="android:style/Theme.Holo.Light.DarkActionBar">
        <item name="android:actionBarStyle">@style/Widget.App.ActionBar</item>
    </style>

    <style name="Widget.App.ActionBar" parent="android:style/Widget.Holo.Light.ActionBar.Solid.Inverse">
        <item name="android:indeterminateProgressStyle">@style/IndeterminateProgress</item>
    </style>

    <style name="IndeterminateProgress" parent="@android:style/Widget.ProgressBar.Small"/>

 

 

 

2. 如果是使用了AnctionBarSherlock来适配2.x系统时,需要将上面的style声明到values-v14中。然后在values中作如下定义。

 

<style name="Theme.App" parent="Theme.Sherlock.Light.DarkActionBar">
        <item name="actionBarStyle">@style/Widget.App.ActionBar</item>
    </style>

    <style name="Widget.App.ActionBar" parent="Widget.Sherlock.Light.ActionBar.Solid.Inverse">
        <item name="background">@drawable/navbar_bg</item>
        <item name="backgroundSplit">@drawable/navbar_bg</item>
        <item name="indeterminateProgressStyle">@style/IndeterminateProgress</item>
    </style>

    <style name="IndeterminateProgress" parent="@style/Widget.Sherlock.ProgressBar">
        <item name="android:indeterminateDrawable">@drawable/progress_small_holo</item>
        <item name="android:minWidth">16dip</item>
        <item name="android:maxWidth">16dip</item>
        <item name="android:minHeight">16dip</item>
        <item name="android:maxHeight">16dip</item>
        <item name="android:gravity">center</item>
    </style>

 注意上面IndeterminateProgress的定义不同。由于2.x系统中没有Widget.ProgressBar.Small这个Style,我们需要自己实现一个这样的Style。网上不少文章介绍说可以用ActionBarSherlock的@drawable/progress_small_holo作为ActionBar的indeterminateDrawable。但实际上目前最新版的ActionBar中不包含这个drawable。于是我们对v14 style定义中的Widget.ProgressBar.Small进行分析发现,他是由一个自定义的Drawable实现的。于是可以仿照他的实现为2.x系统实现一个小个一点的进度圈。如上的@drawable/progress_small_holo是一个drawable,定义如下(两个drawable图片,可以从sdk的4.0以上版本的resource中找到)

 

<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
    <item>
        <rotate
                android:drawable="@drawable/spinner_16_outer_holo"
                android:fillAfter="true"
                android:fromDegrees="0"
                android:pivotX="50%"
                android:pivotY="50%"
                android:toDegrees="2000"/>
    </item>
    <item>
        <rotate
                android:drawable="@drawable/spinner_16_inner_holo"
                android:fillAfter="true"
                android:fromDegrees="1440"
                android:pivotX="50%"
                android:pivotY="50%"
                android:toDegrees="0"/>
    </item>
</layer-list>

 

 

这样便大功告成了(见下图)。看上去是不是比那个大圈更和谐一点?

 

 


3. 上面的例子中values-v14中ActionBar继承自Android4.0原生的主题风格。如果我们同时使用了ActionBarSherlock。并且在optionsMenu中用到了searchView, 由于ActionBarSherlock要求我们在optionsMenu使用searchView时需要使用com.actionbarsherlock.widget.SearchView。如果v-14的主题继承自原生主题,我们就无法从optionsMenu中得到searchView,因为原生的ActionBar使用的是系统的android.Widget.SearchView。这时我们需要在v-14的style中也将主题从ActionBarSherlock的主题继承。并且indeterminateProgressStyle也要声明为自定义的类型。

 


    
[2] 一鍙蜂俊浠ゃ€?鍙蜂俊浠ゅ拰PRI淇′护
    来源: 互联网  发布时间: 2014-02-18
1鍙蜂俊浠ゃ€?鍙蜂俊浠ゅ拰PRI淇′护

闅忚矾淇′护锛圕AS:Channel Associated Signaling锛夛細淇′护鍜岃瘽闊冲湪鍚屼竴鏉¤瘽璺腑浼犻€佺殑淇′护鏂瑰紡銆傜洰鍓嶆垜鍥介噰鐢ㄧ殑闅忚矾淇′护绉颁负涓浗1鍙蜂俊浠ょ郴缁熴€?聽聽

鍏叡淇¢亾淇′护锛圕CS:Common Channel Signaling锛夛細浠ユ椂鍒嗘柟寮忓湪涓€鏉¢珮閫熸暟鎹摼璺笂浼犻€佷竴缇よ瘽璺殑淇′护鐨勪俊浠ゆ柟寮忋€傞€氬父鐢ㄤ簬灞€闂淬€傜洰鍓嶆垜鍥介噰鐢ㄧ殑鍏叡淇¢亾淇′护灏辨槸涓浗7鍙蜂俊浠ゃ€偮?/p>

涓浗1鍙蜂俊浠わ細涓洪殢璺俊浠ゃ€備负30/32鏃堕殭2048K灞€闂翠腑缁т紶杈撴柟寮忥紝Timeslot 16琚敤鏉ヤ紶閫掑叾璇濋煶閫氶亾鐨勪俊浠わ紝璁板彂鍣ㄤ俊浠や负MFC锛堝棰戜簰鎺э紝鍗崇敤鍏釜棰戠巼涓殑涓や釜缁勫悎锛屾垚涓€缁勭紪鐮侊紝鍏?5绉嶅墠鍚戜俊浠わ紝鐢ㄥ洓涓鐜囦腑鐨勪袱涓粍鍚堬紝鎴愪竴缁勭紪鐮侊紝鍏?绉嶅悗鍚戜俊浠わ紝鍓嶅悜鏄寚涓诲彨鍚戣鍙紶閫侊紝鍚庡悜鏄寚琚彨鍚戜富鍙紶閫併€傦級锛岀嚎璺俊浠,b,c,d涓簒x11銆俁2淇′护涓庝腑鍥?鍙蜂俊浠ょ殑鍖哄埆鍦ㄤ簬R2淇′护鐨勮鍙戝櫒淇′护涓篋TMF锛堝弻闊冲棰戯級锛岀嚎璺俊浠,b,c,d涓簒x01銆偮?/p>

7鍙蜂俊浠わ細SS7鏄竴绉嶅叕鍏变俊閬撲俊浠ゃ€傛槸灏嗗懠鍙帶鍒朵俊鎭拰鍏朵粬涓氬姟淇℃伅閫氳繃涓€寮犵嫭绔嬬殑淇′护缃戠粶浼犺緭锛岀敱浜庡皢淇′护鍜岃瘽闊抽€氶亾鍒嗗紑锛屽彲閲囩敤楂橀€熸暟鎹摼璺紶閫佷俊鍙凤紝鍥犺€屽叿鏈変紶杈撻€熷害蹇€佸懠鍙缓绔嬫椂闂寸煭銆佷俊鍙峰閲忓ぇ绛夌壒鐐广€係S7淇′护鐨勬爣鍑嗗寲绋嬪害姣擱2淇′护濂斤紝浣嗕緷鐒跺瓨鍦ㄦ爣鍑嗗寲鍏煎鐨勯棶棰樸€傚鍥藉唴鐨凷S7绉颁负涓浗7鍙蜂俊浠ゃ€傚湪搴旂敤涓婄敱浜庨渶瑕佺洰鐨勫湴缂栫爜绛変俊鎭紝浣滀负灞€闂翠紶杈撴椂浣跨敤骞挎硾锛屼絾浣滀负鐢ㄦ埛绔眬鎺ュ叆浣跨敤鏃剁敱浜庣洰鐨勫湴缂栫爜璧勬簮闂瀛樺湪锛屽簲鐢ㄤ笂娌℃湁PRI淇′护浣跨敤鐏垫椿銆佸箍娉涖€傜0鏃堕殭鐢ㄤ綔甯у悓姝ヤ俊鎭€氶亾锛岀16鏃堕殭鐢ㄤ綔鍏叡淇′护閫氶亾锛屽叾浣?0鏃堕殭鐢ㄤ綔璇煶鎴栨暟鎹€氶亾銆偮?/p>

7鍙蜂俊浠ょ殑鐗圭偣鏄細淇′护閫熷害蹇紝鍏锋湁鎻愪緵澶ч噺淇′护鐨勬綔鍔涳紝鍏锋湁鏀瑰彉鍜屽鍔犱俊浠ょ殑鐏垫椿鎬э紝渚夸簬寮€鏀炬柊涓氬姟锛屽湪閫氳瘽鏃跺彲浠ラ殢鎰忓鐞嗕俊浠わ紝鎴愭湰浣庛€傜洰鍓嶅緱鍒板箍娉涘簲鐢ㄣ€侰CITT鑷?980骞存彁鍑?鍙蜂俊浠ら粍鐨功锛屽厛鍚庡娆′慨姝o紝鑷?993骞存彁鍑虹櫧鐨功銆?聽

涓浗7鍙蜂俊浠よ鑼冧簬1990骞?鏈堝疄鏂斤紝璇ヨ鑼冩槸浠CITT浜?988骞撮甯冪殑钃濈毊涔︿负鍙傝€冨埗璁㈢殑锛屽彧鍦ㄧ數璇濈綉涓娇鐢紝鍗冲彧閲囩敤浜嗘秷鎭紶閫掗儴鍒嗭紙MTP锛夊拰鐢佃瘽鐢ㄦ埛閮ㄥ垎锛圱UP锛夈€偮?/p>

闅忚矾淇′护鍜屽叕鍏变俊閬撲俊浠ょ殑鍖哄埆锛?鍙蜂俊浠ゅ埄鐢═S16浼犻€佹椂銆傛瘡涓猅S16璐熻矗浼犻€佷袱涓瘽璺殑绾胯矾淇′护锛孴S16鍜岃瘽璺湁鐫€鍥哄畾鐨勪竴涓€瀵瑰簲鍏崇郴銆傝€?鍙蜂俊浠ゅ埄鐢═S16鏉ヤ紶閫佹椂锛屽彧鏄皢缁勬垚淇′护鍗曞厓鐨勮嫢骞蹭釜8浣嶄綅缁勶紝渚濇鎻掑叆TS16锛孴S16骞朵笉鐭ラ亾浼犻€佺殑鍐呭锛屽嵆淇′护鍜岃瘽璺病鏈夊浐瀹氬叧绯伙紝鍙笉杩囧埄鐢═S16浣滀负浼犻€佷俊浠ょ殑杞戒綋锛屾椂浼犻€佷俊浠ゆ秷鎭殑鏁版嵁閾捐矾锛屽洜姝わ紝閫夌敤鍝釜鏃堕殭鍋氭暟鎹摼璺潎鍙€?--- 杩欎篃鏄殢璺俊浠ゅ拰鍏叡淇¢亾淇′护鐨勪竴涓湰璐ㄥ尯鍒€偮?/p>

PRI淇′护锛氬張绉癐SDN锛?0B+D锛変俊浠ゃ€丏SS1淇′护銆丳RA淇′护銆傚湪鍖楃編鍜屾棩鏈紝ISDN PRI鎻愪緵23B+D淇¢亾锛屾€婚€熺巼杈?.544Mbps锛屽叾涓璂淇¢亾閫熺巼涓?4kbps銆傝€屽湪娆ф床銆佹境澶у埄浜氱瓑鍥藉锛孖SDN PRI涓?0B+D锛屾€婚€熺巼杈?.048Mbps銆傛垜鍥戒负30B+D鏂瑰紡銆?/p>


    
[3] 有效的减小应用占用的空间——使用系统资源
    来源: 互联网  发布时间: 2014-02-18
有效的减少应用占用的空间——使用系统资源

做安卓开发的,是不是总想把自己的应用做的足够强大,但空间足够小?可以需求方又要求很炫的效果,怎么办?

其实系统自带了很多风格的边框、图标等,而且不同版本之间略有差异,但功能是一样的。我们为什么放着这些现成的资源不用呢?下面就来看看系统都有什么吧。运行下面的例子,可以看到系统中所有drawable资源。

 

MainActivity.java

package com.jmeditor.sysresbrowser;

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

public class MainActivity extends Activity {

	//浏览资源的序号
	private static int index = 0;
	//所有资源列表
	private static List<Map<String,Object>> rs;
	//显示图片的View
	private ImageView imageView;
	//显示图片的背景,因为有些只适合在黑背景下显示
	private LinearLayout imageBg;
	//显示数量
	private TextView textView;
	//显示当前图片的ID,方便引用
	private TextView tips;
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		textView = (TextView)findViewById(R.id.textView);
		tips = (TextView)findViewById(R.id.tips);
		imageView = (ImageView)findViewById(R.id.imageView);
		imageBg = (LinearLayout)findViewById(R.id.imageBg);
		Button imageViewBtnPre = (Button)findViewById(R.id.imageViewBtnPre);
		Button imageViewBtnNext = (Button)findViewById(R.id.imageViewBtnNext);
		
		//读取系统所有的drawable资源
		try {
			Class c = Class.forName("android.R$drawable");
			Field[] fs = c.getDeclaredFields();
			rs = new ArrayList<Map<String,Object>>();
				
			for (Field field : fs) {
				if (field.getType().getName().equals("int") ) {
					Map<String,Object> m = new HashMap<String,Object>();
					m.put("name", field.getName());
					m.put("value", field.get(this));
					rs.add(m);
				}
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		//上一张
		imageViewBtnPre.setOnClickListener(new OnClickListener(){

			@Override
			public void onClick(View v) {
				if(index > 0){
					index --;
					showImg();
				}
			}

			
		});
		//下一张
		imageViewBtnNext.setOnClickListener(new OnClickListener(){
			
			@Override
			public void onClick(View v) {
				if(index < rs.size() - 1){
					index ++;
					showImg();
				}
			}
			
		});
		
		//背景色
		this.findViewById(R.id.bg_1).setOnClickListener(new OnClickListener(){

			@Override
			public void onClick(View v) {
				imageBg.setBackgroundColor(getResources().getColor(R.color.white));
			}
			
		});
		this.findViewById(R.id.bg_2).setOnClickListener(new OnClickListener(){
			
			@Override
			public void onClick(View v) {
				imageBg.setBackgroundColor(getResources().getColor(R.color.black));
			}
			
		});
		this.findViewById(R.id.bg_3).setOnClickListener(new OnClickListener(){
			
			@Override
			public void onClick(View v) {
				imageBg.setBackgroundColor(getResources().getColor(R.color.blue));
			}
			
		});
	}
	
	private void showImg() {
		imageView.setBackgroundResource(Integer.valueOf(rs.get(index).get("value").toString()));
		String s = getResources().getString(R.string.total_msg);
		textView.setText(s.replaceAll("\\{1\\}", "" + rs.size()).replaceAll("\\{2\\}", "" + (index+1)));
		tips.setText(rs.get(index).get("name").toString());
	}

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.main, menu);
		return true;
	}

}

 

布局文件activity_main.xml

<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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context=".MainActivity" >

    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />
    
    <LinearLayout 
        android:id="@+id/imageBg"
        android:layout_width="fill_parent"
        android:layout_height="100dip"
        android:padding="5dip">
	    <ImageView 
	        android:id="@+id/imageView"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"/>
    </LinearLayout>
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dip">
		<TextView
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"
	        android:text="@string/tips"/>
		<TextView
		    android:id="@+id/tips"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"/>
	</LinearLayout>
	<LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
	    <Button 
	        android:id="@+id/imageViewBtnPre"
	        android:text="@string/pre_img"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"/>
	    
	    <Button 
	        android:id="@+id/imageViewBtnNext"
	        android:text="@string/next_img"
	        android:layout_width="wrap_content"
	        android:layout_height="wrap_content"/>
	</LinearLayout>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/background_title"/>
	    
    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
	    <View
	        android:id="@+id/bg_1"
	        android:layout_width="50dip"
	        android:layout_height="50dip"
	        android:layout_margin="5dip"
	        android:background="@color/white"/>
	    
	    <View
	        android:id="@+id/bg_2"
	        android:layout_width="50dip"
	        android:layout_height="50dip"
	        android:layout_margin="5dip"
	        android:background="@color/black"/>
	    
	    <View
	        android:id="@+id/bg_3"
	        android:layout_width="50dip"
	        android:layout_height="50dip"
	        android:layout_margin="5dip"
	        android:background="@color/blue"/>
    </LinearLayout>
</LinearLayout>

 

 

 


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3