当前位置:  编程技术>移动开发
本页文章导读:
    ▪OAuth 2.0相干        OAuth 2.0相关 1.常用中英文对照表:         credential--私有证书         authentication--身份验证         authorization--授权         clear-text ---明文         access-token ---访问令牌.........
    ▪ Logcat失误:Could not create the view: For input string        Logcat出错:Could not create the view: For input string: 使用eclipse开发android应用已经一年多了,但今天很不辛的遇到了logcat报错:Could not create the view: For input string: "";再也使用不了logcat调试程序了,.........
    ▪ 给TextView平添边框       给TextView添加边框 <?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" andr.........

[1]OAuth 2.0相干
    来源: 互联网  发布时间: 2014-02-18
OAuth 2.0相关

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]

 


    
[2] Logcat失误:Could not create the view: For input string
    来源: 互联网  发布时间: 2014-02-18
Logcat出错:Could not create the view: For input string:

使用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,上面的配置乃我自己的,非原创作者的。


    
[3] 给TextView平添边框
    来源: 互联网  发布时间: 2014-02-18
给TextView添加边框
<?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属性


    
最新技术文章:
▪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功能代码片段总结
c/c++开源软件 iis7站长之家
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


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

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

浙ICP备11055608号-3