zoukankan      html  css  js  c++  java
  • android开发过程中和linux使用的一些零碎笔记

    1、(Android)去掉Listview控制滚动时上下的阴影色(默认渐变白色),解决方案:android:fadingEdge="none"

    2、(Linux)让shell脚本在后台运行,不至于关闭ssh后,shell就被关闭了,用nohup命令。

      nohup ./my.sh &

      后面的&号不能漏了。

    3、(Linux)在windows用文本编缉器写了一个linux的shell脚,当运行时,却出现:/bin/bash^M: bad interpreter: No such file or directory

      错误,后来google了一下,才知道是文件格式不对。查看文件格式的命令是:运行vi filename命令后,

      :set ff?

      可以看到dos或unix的字样. 如果的确是dos格式的。也可以这样:

      :get fileformat               --->可以看到本文件的格式

      :set fileformat=unix     --->就可以将doc转化为unix格式了

    4、(Android)ListView滚动时背景变色的问题

      我的手机是galaxy nexus,系统版本是:android 4.1.1,ListView是有设置了一张图片,程序在我本机上运行是正常的,但在2.3.x的版本上运行,  当滚动  listview时,listview的背景却变白色了,效果很效。解决方案:<ListView android:cacheColorHint="#00000000"/>

    5、linux下修改完/etc/profile后,让它即刻生效:

      # .  /etc/profile
      注意: . 和 /etc/profile 有空格
      方法2:
      让/etc/profile文件修改后立即生效 ,可以使用如下命令:
      # source /etc/profile

    (慢慢增加)

  • 相关阅读:
    [Outlook] Outlook2013能收但无法发送邮件-0x800CCC13, 0x800CCC0B, 0x8004210B
    [Mobile] 手机浏览器输入框-数字输入框
    [Qcon] 百姓网开发总结
    [QCon] Scrum阅读随想
    [Spring] 事务级别定义
    [Monitor] 监控规则定义
    [Spring Batch] 图解Spring Batch原理
    [JavaCore] 微信手机浏览器版本判断
    Python 编码简单说
    矩阵或多维数组两种常用实现方法
  • 原文地址:https://www.cnblogs.com/dingchenghong/p/2714562.html
Copyright © 2011-2022 走看看