1.常用中英文对照表:
credential--私有证书
authentication--身份验证
authorization--授权
clear-text ---明文
access-token ---访问令牌
access-grant ---访问许可
signature ------签名
refresh-token ----刷新令牌
scope --------作用域
authorization code ---授权码
2.常用名词解释
access-token ---访问令牌:
授权服务器在资源拥有者的授意下分发给第三方的代表一定作用域、持续时间、和其他属性的字符串。
refresh-token ----刷新令牌:
客户端获取新的访问令牌的令牌,不用资源拥有者参与
authorization code ---授权码:
一个短期令牌,代表终端用户的授权,授权码用于获取一个访问令牌和一个刷新令牌。
access-grant ---访问许可:
用于描述中间形式的私有证书(如终端用户的密码和授权码)的一个通用词汇,代表资源拥有者的授权,客户端需要通过访问许可交换成访问令牌。
终端用户授权endpoint:
授权服务器上能够验证终端用户并获取授权的 Http endpoint.
令牌endpoint:
授权服务器上能够分发令牌和刷新过期令牌的 Http endpoint.
客户端标识符:
分发给客户端的唯一标识,用于客户端向授权服务器标识自己。
[size=small][/size]
使用eclipse开发android应用已经一年多了,但今天很不辛的遇到了logcat报错:Could not create the view: For input string: "";再也使用不了logcat调试程序了,为了能正常调试,开始查找出错原因并解决它,因为ADT的版本不是最新的,所以先更新到最新版本,然后重启eclipse但是问题依旧,在eclipse安装目录中查看安装文件没发现能修正此问题的解决方法,无奈之下更换个新的工作空间后发现logcat可以正常显示了,仔细查看工作空间中的setting文件夹中的配置,终于发现了问题所在:
出此错的原因是Logcat视图中的filter包含了“:”(见下面最后一条);
#Tue Jul 19 18:33:04 CST 2011 threadPanel.stack.col0=117 emulatorControl.waypoint.desc=111 emulatorControl.track.first=129 com.android.ide.eclipse.ddms.logcat.message=2040 emulatorControl.waypoint.elevation=57 com.android.ide.eclipse.ddms.explorer.permissions=75 com.android.ide.eclipse.ddms.explorer.time=45 com.android.ide.eclipse.ddms.logcat.filters=bearing\:\:2\:bearing\:|
解决方法是:更改eclipse的工作空间(workspace)中的文件“.metadata/.plugins/org.eclipse.core.runtime/.settings/com.android.ide.eclipse.ddms.prefs”。
将com.android.ide.eclipse.ddms.logcat.filters值设为空即可。
com.android.ide.eclipse.ddms.logcat.filters=
转自:http://blog.csdn.net/jj_zerogra/article/details/5956055,上面的配置乃我自己的,非原创作者的。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout android:id="@+id/LinearLayout01" xmlns:android="http://schemas.android.com/apk/res/android" android:background="#ff5500" android:layout_width="fill_parent" android:layout_height="wrap_content"> <TextView android:layout_below="@+id/ItemImage" android:text="TextView01" android:id="@+id/ItemText" android:bufferType="normal" android:singleLine="true" android:background="#000000" android:layout_width="fill_parent" android:gravity="center" android:layout_margin="1dip" android:layout_gravity="center" android:layout_height="wrap_content"> </TextView> </LinearLayout>
关键是LinearLayout设置背景,和android:layout_margin属性