这是一个连接Demo
一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
有序列表展示
- 有序列表
- 有序列表
- 有序列表
无序列表展示
引用展示
引用引用引用引用引用引用引用引用引用引用引用引用引用引用引用引用引用引用
Java代码块
public class KeyboardFrameLayout extends FrameLayout {
private KeyboardHelper mHelper;
public KeyboardFrameLayout(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); mHelper = new KeyboardHelper(this); }
public KeyboardFrameLayout(Context context, AttributeSet attrs) { super(context, attrs); mHelper = new KeyboardHelper(this); }
public KeyboardFrameLayout(Context context) { super(context); mHelper = new KeyboardHelper(this); }
public void setOnKeyboardStateListener(OnKeyboardStateChangeListener listener) { mHelper.setOnKeyboardStateListener(listener); }
public KeyboardHelper getKeyBoardHelper() { return mHelper; }
@Override protected void onLayout(boolean changed, int l, int t, int r, int b) { super.onLayout(changed, l, t, r, b); mHelper.init(); }
}
|
Shell代码块
WDYdeMacBook-Pro:vendor andforce$ ls -al
total 24
drwxr-xr-x 5 andforce staff 170 9 27 10:56 .
drwxr-xr-x 8 andforce staff 272 9 27 08:43 ..
-rw-r--r-- 1 andforce staff 2321 9 27 08:43 _echo.styl
-rw-r--r-- 1 andforce staff 1053 9 27 08:43 _highlight.styl
-rw-r--r-- 1 andforce staff 2226 9 27 08:43 _normalize.styl
|