一、问题描述
本系列将结合案例应用,陆续向大家介绍一些Android典型界面的设计,首先说说tab导航,导航分为一层和两层(底部区块+区域内头部导航),主要实现方案有RadioGroup+ViewPage+Fragment、Viewpager Indicator、ActionBar Tabs、FragmentTabHost+Fragment等,下面我们先采用RadioGroup+...
分类:
移动开发 时间:
2015-07-16 16:47:29
阅读次数:
228
一、问题描述 本系列将结合案例应用,陆续向大家介绍一些Android典型界面的设计,首先说说tab导航,导航分为一层和两层(底部区块+区域内头部导航),主要实现方案有RadioGroup+ViewPage+Fragment、Viewpager Indicator、ActionBar Tabs、Fr....
分类:
移动开发 时间:
2015-07-16 15:48:20
阅读次数:
172
http://www.guitartabsexplorer.com/http://www.guitartabsexplorer.com/lavigne-avril-Tabs/everybody-hurts-(Ver3)-crd.php Em C G DCapo 3IntroE |---...
分类:
其他好文 时间:
2015-07-14 11:15:39
阅读次数:
77
/*
Write a program to copy its input to its output, replacing each tab by \t, each
backspace by \b, and each backslash by \\. This makes tabs and backspaces visible
in an unambiguous way.
*/
#inclu...
分类:
其他好文 时间:
2015-07-12 20:25:20
阅读次数:
93
/*
Write a program to count blanks, tabs, and newlines.
*/
#include
/* count blanks, tabs, and newlines */
main()
{
int c, nb, nt, nl;
nb = 0; /* number of blanks */
nt = 0; /* number of t...
分类:
其他好文 时间:
2015-07-12 20:23:41
阅读次数:
103
项目中当关闭tabs选项卡时,底部footer需要通过javascript重新定位calcFooter(),如何实现呢?选项卡上的关闭图标的方法是easyui自带的,calcFooter()写在onClose中不起作用,API中没有关闭后的方法,但有个关闭之前的方法onBeforeClose,在onBeforeClose方法中先实现onClose()方法,再calcFooter(),再return...
分类:
Web程序 时间:
2015-07-08 22:35:40
阅读次数:
250
获取焦点时显示图标,失去焦点时隐藏图标 View Code
分类:
其他好文 时间:
2015-07-06 23:20:06
阅读次数:
135
;;tab and space;;when true,emacs use mixture of tab and space to archieve(setq-default indent-tabs-mode nil);;control length used to offset.(setq-defa...
分类:
系统相关 时间:
2015-07-03 23:20:51
阅读次数:
188
#from 《Python 2.7.9 documentation》Use 4-space indentation, and no tabs.#使用4空格缩进,不要使用tab缩进Wrap lines so that they don’t exceed 79 characters.拆行确保每行不超过7...
分类:
编程语言 时间:
2015-07-02 22:16:39
阅读次数:
154
前言 非常喜欢用RadioButton+RadioGroup做Tabs,能自动处理选中等效果,但是自带的RadioGroup不支持嵌套RadioButton(从源码可看出仅仅是判断子控件是不是RadioButton),本文参考RadioGroup修改了一个支持嵌套CompoundButton的控件,...
分类:
移动开发 时间:
2015-07-02 15:34:06
阅读次数:
257