最近开发中遇到,全屏模式下输入框在底部不会跟随软键盘弹起。于是网上搜索了解决的方案。大致找到了两种方案。 第一种 定义好此类 public class SoftKeyBoardListener { private View rootView;//activity的根视图 int rootViewVi ...
分类:
移动开发 时间:
2019-06-10 09:19:30
阅读次数:
117
详情见 https://www.jianshu.com/p/3ecad4bfc55e 从关键点1可以看到,如果windowIsFloating被配置为true,就会通过setLayout(WRAP_CONTENT, WRAP_CONTENT)将Window的窗口属性WindowManager.Lay ...
分类:
移动开发 时间:
2019-02-12 21:36:48
阅读次数:
222
1. styles.xml 2. AndroidManifest.xml ...
分类:
移动开发 时间:
2018-07-13 13:58:47
阅读次数:
303
方法一 方法二 方法三 注: 1、方法一中的两段代码要在setContentView()之前。 2、方法二只能同时隐藏状态栏和标题栏。 3、方法一和方法二都只应用于单个Activity。方法三应用于整个程序。 对于运行Android 4.0以上系统的平板电脑,以上三种方法都不会隐藏屏幕下方的状态栏, ...
分类:
移动开发 时间:
2017-06-07 10:00:26
阅读次数:
234
http://www.xuebuyuan.com/558284.html方法一public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { sup... ...
分类:
移动开发 时间:
2017-05-24 14:42:21
阅读次数:
203
我们都知道在Android中某些功能的实现往往有两种方法:一种是在xml文件中设置相应属性,另一种是用代码实现。同样Android实现全屏显示也可以通过这两种方法实现:1、在AndroidManifest.xml的配置文件里面的标签添加属性:android:theme="@android:style...
分类:
移动开发 时间:
2015-12-13 18:37:16
阅读次数:
179
1.隐藏标题栏(titlebar) (1)在代码中隐藏标题栏requestWindowFeature(Window.FEATURE_NO_TITLE); (2)在Manifest中Application或Activity中配置主题样式android:theme="@android:style/T.....
分类:
移动开发 时间:
2015-10-21 12:27:29
阅读次数:
193
实现全屏的代码:
// 全屏显示
requestWindowFeature(Window.FEATURE_NO_TITLE);
//turning off the title at the top of the screen.
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.Lay...
分类:
移动开发 时间:
2015-03-27 22:25:15
阅读次数:
273
1、//在onCreat方法中setContentView()之前插入requestWindowFeature(Window.FEATURE_NO_TITLE);//取消标题栏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREE...
分类:
移动开发 时间:
2015-01-12 12:47:29
阅读次数:
164
参考地址:http://www.cnblogs.com/-cyb/archive/2012/03/09/Android_FullScreen.html1、//在onCreat方法中setContentView()之前插入requestWindowFeature(Window.FEATURE_NO_T...
分类:
移动开发 时间:
2014-12-17 20:37:47
阅读次数:
204