Skip to content

Commit 5ba1b7d

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 7d55ca0 + d5804f8 commit 5ba1b7d

1 file changed

Lines changed: 31 additions & 0 deletions

File tree

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# WebViewKeyBoardListener
2+
一行代码 搞定webview全屏键盘界面不能上弹问题
3+
4+
## 如何导入?
5+
6+
* Android Studio
7+
8+
allprojects {
9+
repositories {
10+
...
11+
maven { url 'https://jitpack.io' }
12+
}
13+
}
14+
15+
dependencies {
16+
compile 'com.github.shuhaoSCode:WebViewKeyBoardListener:-SNAPSHOT'
17+
}
18+
19+
20+
* eclipse。。。请自行copy class。
21+
22+
## 当前功能
23+
* 解决全屏在任何情况下键盘不能上弹问题
24+
25+
## 如何使用
26+
@Override
27+
protected void onCreate(Bundle savedInstanceState) {
28+
super.onCreate(savedInstanceState);
29+
setContentView(R.layout.activity_main);
30+
KeyBoardListener.getInstance(this).init();
31+
}

0 commit comments

Comments
 (0)