【Using Mono DLLs in a Unity Project】 The path to the Unity DLLs will typically be: 一个生成dll的例子如下: mcs -r:/Applications/Unity/Unity.app/Contents/Fr...
分类:
编程语言 时间:
2014-10-17 18:11:40
阅读次数:
234
转载请注明出处:http://blog.csdn.net/zhaokaiqiang1992
今天这篇文章,主要是给大家实现一个自定义的带有指示器的底部导航栏。
先看一下实现的效果吧。
这个自定义控件的使用要注意以下几个方面:
1.没有布局文件及资源文件,只需要一个java文件就可调用
2.可以非常灵活的使用,一句代码就可以添加到项目...
分类:
其他好文 时间:
2014-10-17 15:34:40
阅读次数:
193
RelativeLayout viewPagerContainer = (RelativeLayout) headerView.findViewById(R.id.content_pager_layout); imgPager = (ViewPagerFixed) headerView...
分类:
移动开发 时间:
2014-10-17 13:28:05
阅读次数:
239
官方网站:http://www.redis.io百度百科:http://baike.baidu.com/view/4595959.htm?fr=aladdinwindows下安装redis:下载地址:https://github.com/dmajkic/redis/downloads选择一个版本下载...
并查集#include#includeusing namespace std;#define MAXN 100005int p[MAXN],N;int Find(int x) {return x == p[x] ? x : p[x] = Find(p[x]);}int main(){ //fr...
分类:
其他好文 时间:
2014-10-17 00:20:03
阅读次数:
301
Domination
Time Limit: 8 Seconds Memory Limit: 131072 KB Special Judge
Edward is the headmaster of Marjar University. He is enthusiastic about chess and often plays chess with his fr...
分类:
其他好文 时间:
2014-10-16 19:51:23
阅读次数:
325
Fragment中有一个ViewPager,ViewPager的每个pager为Fragment
如此内嵌引发的异常:
java.lang.IllegalStateException: Activity has been destroyed
at android.support.v4.app.FragmentManagerImp
的解决方案...
分类:
其他好文 时间:
2014-10-16 13:26:42
阅读次数:
526
ViewPager 基本介绍及使用技巧,以及与iOS的对比。...
分类:
移动开发 时间:
2014-10-16 12:50:02
阅读次数:
184
WM_CONCAT(colName)为Oracle 10g中行数据转列数据的内置函数,执行效果如下表T A B------------ 1 2 1 3 1 4 2 1 2 3执行语句 :SELECT A, WM_CONCAT(B) B FR...
分类:
数据库 时间:
2014-10-15 18:59:31
阅读次数:
243
--如果 成绩>100 优
--如果成绩>90 良
select * from TblScore
select 英语成绩=
(case when tEnglish>90 then '良' when tEnglish>100 then'优' end),数学成绩=(case when tMath>90 then '良' when tMath>100 then'优' end) fr...
分类:
数据库 时间:
2014-10-15 14:56:30
阅读次数:
159