当前位置:  编程技术>移动开发
本页文章导读:
    ▪引见几个VIM插件        介绍几个VIM插件   一下脱离Windows,比较痛苦的是没有source insight   配置了一下vim,可以比较舒服的读代码了  附件图片,是配置之后的效果 vim plugin  2 ===============              3  .........
    ▪ 首度启动模拟器时间过长的原因        首次启动模拟器时间过长的原因 首次开机时,手机也需要启动,就像任何计算机系统一样。关闭模拟器就像是关闭手机或取出手机电池一样。所以,首次启动相当于开机,时间会长一些。.........
    ▪ 软键盘拦住文本框       软键盘挡住文本框 外层套一个ScrollView <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:background="@drawable/bg" android:layout_height="fill_parent" android.........

[1]引见几个VIM插件
    来源: 互联网  发布时间: 2014-02-18
介绍几个VIM插件
  一下脱离Windows,比较痛苦的是没有source insight
  配置了一下vim,可以比较舒服的读代码了
  附件图片,是配置之后的效果



vim plugin
  2 ===============           
  3     TagList               
  4     ====
  5     Tag list              
  6
  7     mru.vim               
  8     ====                  
  9
10   
11     BlockComment.vim      
12     ====                  
13     '.c'  to comment code 
14     '.C'  to uncomment code
15
16     BufExlorer
17     ====
18     '\be' open buf list   
19
20     Mark
21     ====
22     '\m' mark or unmark the word under the cursor
23     '\r' manually input a regular expression
24     '\n' clear this mark, or clear all highlighted
25
26     SearchComplete
27     ====
28     / or ? 搜索时 Tab 补全单词
29
30     NERDTree
31     ====
32     'o' open file or dir  
33     't' open file in tab  
34     'T' open it in background tab  
35     '!' exec this file    
36     'p' goto parent dir
37     'P' goto root dir
38     'K' goto first node   
39     'J' goto last node    
40     'm' show file system menu
41     '?' help
42     'q' close

vim map
48 =====
49   map <f7> :Tlist<cr>
50   map <f8> :Mru<cr>
51   map <f6> :NERDTree<cr>
52   注意:在.vimrc中写该命令,一定注意有"<f7> :"之间的空格
                                                                  



    
[2] 首度启动模拟器时间过长的原因
    来源: 互联网  发布时间: 2014-02-18
首次启动模拟器时间过长的原因
首次开机时,手机也需要启动,就像任何计算机系统一样。关闭模拟器就像是关闭手机或取出手机电池一样。所以,首次启动相当于开机,时间会长一些。

如果不同见解,欢迎评论

    
[3] 软键盘拦住文本框
    来源: 互联网  发布时间: 2014-02-18
软键盘挡住文本框
外层套一个ScrollView
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:background="@drawable/bg" android:layout_height="fill_parent" android:orientation="vertical"> 
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
    android:layout_width="fill_parent"  
    android:layout_height="fill_parent">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" android:orientation="vertical">
 
</RelativeLayout>
</ScrollView>
</LinearLayout>
 
AndroidManifest.xml
 
相应的activity加入属性android:windowSoftInputMode="adjustPan"

     今天做一个相机加一个文本框布局,文本在下面怎么输入,一输入软键盘把文本框挡住,在网上goole,找到上面一种方法,不行,于是翻网页找,终于解决。

代码方式:  
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE | 
                WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN); 

  xml方式: 
<activity android:name=".Activity.FilterActivity" android:label="@string/app_name" 
 android:windowSoftInputMode="stateHidden" android:screenOrientation="portrait" 
android:configChanges="keyboardHidden|orientation" 
           /> 

 

 

1 楼 shaobin0604 2010-08-25  
android:windowSoftInputMode="adjustResize"


就行了


    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
操作系统 iis7站长之家
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3