当前位置:  编程技术>移动开发
本页文章导读:
    ▪Ubuntu 用户安装文件较比器meld使用,以及添加进右键菜单        Ubuntu 用户安装文件较器meld使用,以及添加进右键菜单# Ubuntu 用户安装文件较器meld使用,以及添加进右键菜单 一:文件比较器Meld的安装 sudo apt-get install meld # 整合到 Gedit : sudo apt-get install zeni.........
    ▪ Notification运用以及PendingIntent.getActivity()        Notification使用以及PendingIntent.getActivity() public void sendNotification(Context ctx, String message) {   // get the notification manager   String str = Context.NOTIFICATION_SERVICE;   NotificationManager nm = (NotificationManager) ctx.........
    ▪ NSScanner种的基本用法       NSScanner类的基本用法 NSScanner是一个类,用于在字符串中扫描指定的字符,尤其是把它们翻译/转换为数字和别的字符串。可以在创建NSScaner时指定它的string属性,然后scanner会按照你的要求从头.........

[1]Ubuntu 用户安装文件较比器meld使用,以及添加进右键菜单
    来源: 互联网  发布时间: 2014-02-18
Ubuntu 用户安装文件较器meld使用,以及添加进右键菜单

# Ubuntu 用户安装文件较器meld使用,以及添加进右键菜单

一:文件比较器Meld的安装

sudo apt-get install meld

# 整合到 Gedit :

sudo apt-get install zenity

然后打开 Gedit ,打开菜单 Edit - Preferences - Plugins ,开启 External Tools 插件,点击下面的 Configure Plugin ,按左下角的 + 号添加一个新的工具,输入以下代码,并设置一个快捷键。保存好后你就可以通过该快捷键来直接打开 Meld 并载入原始文档与当前编辑的文档进行比较了。

(有时候是灰色的就没有办法做到下面,具体原因未知.)

#!/bin/sh
meld $GEDIT_CURRENT_DOCUMENT_DIR/$GEDIT_CURRENT_DOCUMENT_NAME `zenity \
--file-selection --title="File for comparsion" --filename=/home/` &

 

二:添加进右键菜单

1.用whereis命令查看你要添加的软件在哪里,比如说我想添加一个终端到右键中。

whereis gnome-terminal

从返回的显示你知道是在 /usr/bin/gnome-terminal

2. 把 gnome-terminal拷贝到 ~/.gnome2/nautilus-scripts目录

cp /usr/bin/gnome-terminal ~/.gnome2/nautilus-scripts

3.在桌面右击鼠标,就可以=>script=>找到你刚才添加进去的东东。

4.OK!

5:如果要将我们的meld添加进来,直接到/usr/bin/将它拷过来即可,很简单的.

 


    
[2] Notification运用以及PendingIntent.getActivity()
    来源: 互联网  发布时间: 2014-02-18
Notification使用以及PendingIntent.getActivity()

 public void sendNotification(Context ctx, String message) {
  // get the notification manager
  String str = Context.NOTIFICATION_SERVICE;
  NotificationManager nm = (NotificationManager) ctx.getSystemService(str);

  // create notification object includes icon ,text ,the time to send
  int icon = R.drawable.ic_launcher;
  CharSequence tickerText = "hello";
  long when = System.currentTimeMillis();// return the system current time
            // in milliseconds since 1970

  Notification notification = new Notification(icon, tickerText, when);

  // set contextView by using setLastestEventInfo
  Intent intent = new Intent(Intent.ACTION_VIEW);
  intent.setData(Uri.parse("http://www.google.com"));
  PendingIntent pi = PendingIntent.getActivity(ctx, 0, intent, 0);// explain
                  // it
                  // below
  notification.setLatestEventInfo(ctx, "title", "text", pi);

  // send notification
  nm.notify(1, notification);// 通知加入状态栏,标记为id=1
 }// above all is how to use Notification

 

个人水平有限,接触到的暂时是这么多,因此当我系统了解完了之后会对此做一个补充

Notification 的使用需要以上四个步骤。

简单的说PendingIntent.getActivity()就是即将发生的intent.

PendingIntent.getActivity(ctx,o,intent,o)官方文档是这样解释的:

public static PendingIntent getActivity (Context context, int requestCode, Intent intent, int flags)
Since: API Level 1

Retrieve a PendingIntent that will start a new activity, like calling Context.startActivity(Intent). Note that the activity will be started outside of the context of an existing activity, so you must use the Intent.FLAG_ACTIVITY_NEW_TASK launch flag in the Intent.

Parameters context The Context in which this PendingIntent should start the activity. requestCode Private request code for the sender (currently not used).  现在不使用了 intent Intent of the activity to be launched. flags May be FLAG_ONE_SHOT, FLAG_NO_CREATE, FLAG_CANCEL_CURRENT, FLAG_UPDATE_CURRENT, or any of the flags as supported byIntent.fillIn() to control which unspecified parts of the intent that can be supplied when the actual send happens.
Returns
  • Returns an existing or new PendingIntent matching the given parameters. May return null only if FLAG_NO_CREATE has been supplied.

一下摘自一个人的博客,只是比官方文档好理解点: 

  下面来谈谈notification,这个notification一般用在电话,短信,邮件,闹钟铃声,在手机的状态栏上就会出现一个小图标,提示用户处理这个快讯,这时手从上方滑动状态栏就可以展开并处理这个快讯。发现这个功能特别好用,所以我就根据我的理解来谈谈。摘自帮助文档 :  notification类表示一个持久的通知,将提交给用户使用NotificationManager。已添加的Notification.Builder,使其更容易构建通知。notification是一种让你的应用程序在没有开启情况下或在后台运行警示用户。它是看不见的程序组件(Broadcast Receiver,Service和不活跃的Activity)警示用户有需要注意的事件发生的最好途径。

    先来区分以下状态栏和状态条的区别:

    1、状态条就是手机屏幕最上方的一个条形状的区域;

          在状态条有好多信息量:比如usb连接图标,手机信号图标,电池电量图标,时间图标等等;

    2、状态栏就是手从状态条滑下来的可以伸缩的view;

          在状态栏中一般有两类(使用FLAG_标记):

          (1)正在进行的程序;

          (2)是通知事件;

     大概来描述创建一个Notification传送的信息有:

    1、一个状态条图标;

    2、在拉伸的状态栏窗口中显示带有大标题,小标题,图标的信息,并且有处理该点击事件:比如调用该程序的入口类;

    3、闪光,LED,或者震动;

      快速创建一个Notification的步骤简单可以分为以下四步:

      第一步:通过getSystemService()方法得到NotificationManager对象;

      第二步:对Notification的一些属性进行设置比如:内容,图标,标题,相应notification的动作进行处理等等;

      第三步:通过NotificationManager对象的notify()方法来执行一个notification的快讯;

      第四步:通过NotificationManager对象的cancel()方法来取消一个notificatioin的快讯;

     下面对Notification类中的一些常量,字段,方法简单介绍一下:

     常量:

        DEFAULT_ALL                  使用所有默认值,比如声音,震动,闪屏等等

        DEFAULT_LIGHTS            使用默认闪光提示

        DEFAULT_SOUNDS         使用默认提示声音

        DEFAULT_VIBRATE         使用默认手机震动

      【说明】:加入手机震动,一定要在manifest.xml中加入权限:

                         <uses-permission android:name="android.permission.VIBRATE" />

        以上的效果常量可以叠加,即通过

                mNotifaction.defaults =DEFAULT_SOUND  |  DEFAULT_VIBRATE ; 

            或mNotifaction.defaults |=DEFAULT_SOUND   (最好在真机上测试,震动效果模拟器上没有)

        //设置flag位

           FLAG_AUTO_CANCEL          该通知能被状态栏的清除按钮给清除掉

       FLAG_NO_CLEAR                  该通知能被状态栏的清除按钮给清除掉

        FLAG_ONGOING_EVENT      通知放置在正在运行

        FLAG_INSISTENT                    是否一直进行,比如音乐一直播放,知道用户响应

      常用字段:

           contentIntent                  设置PendingIntent对象,点击时发送该Intent

           defaults                             添加默认效果

           flags                                  设置flag位,例如FLAG_NO_CLEAR等

          icon                                  设置图标

           sound                                设置声音

           tickerText                        显示在状态栏中的文字

          when                                发送此通知的时间戳

 

Notification.build构造Notification方法介绍:  

     void setLatestEventInfo(Context context , CharSequencecontentTitle,CharSequence  contentText,PendingIntent contentIntent)  

          

        功能: 显示在拉伸状态栏中的Notification属性,点击后将发送PendingIntent对象

        参数: context             上下文环境

                      contentTitle      状态栏中的大标题

                      contentText      状态栏中的小标题

                      contentIntent    点击后将发送PendingIntent对象

      说明:要是在Notification中加入图标,在状态栏和状态条中显示图标一定要用这个方法,否则报错!

      最后说一下NotificationManager类的常用方法:

             通过获取系统服务来获取该对象:           

                NotificationManager mNotificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE) ;

      NotificationManager常用方法介绍:

               public  void cancelAll()                                                          移除所有通知 (只是针对当前Context下的Notification)

               public  void cancel(int id)                                                      移除标记为id的通知 (只是针对当前Context下的所有Notification)

               public  void notify(String tag ,int id, Notification notification) 将通知加入状态栏, 标签为tag,标记为id

               public  void notify(int id, Notification notification)                   将通知加入状态栏,,标记为id

首先,我感觉在实现中PendingIntent感觉就是Intent的包装。

它的三个实例化方法:

getActivity(Context, int, Intent, int)

getService(Context, int, Intent, int)

getBroadcast(Context, int, Intent, int)

感觉是保存当前的Activity的Context,然后在外部启动Intent动作。类似于代码Context.startActivity(*, *);

常和Notification和Alarm一起使用。

代码例子:

public class BannerActivity extends Activity { 

     

    private Button button; 

    private NotificationManager mNotificationManager; 

    private Intent intent; 

    private PendingIntent mPendingIntent; 

    private Notification mNotification; 

 

    /** Called when the activity is first created. */    

    @Override 

    public void onCreate(Bundle savedInstanceState) { 

        super.onCreate(savedInstanceState); 

        setContentView(R.layout.main); 

        mNotificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE); 

         

        button = (Button)this.findViewById(R.id.b); 

         

        intent = new Intent(BannerActivity.this, BaseActivity.class); 

        mPendingIntent = PendingIntent.getActivity(BannerActivity.this, 0, intent, Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT); 

        mNotification = new Notification(); 

         

        button.setOnClickListener(new Button.OnClickListener() { 

             

            @Override 

            public void onClick(View v) { 

                // TODO Auto-generated method stub 

                mNotification.icon = R.drawable.ic_launcher; 

                mNotification.tickerText = "通知!"; //通知在通知栏出现的时候的标题 

                mNotification.defaults = Notification.DEFAULT_SOUND;  

                 

                // 第二个参数是打开通知栏后的标题, 第三个参数是通知内容 

                mNotification.setLatestEventInfo(BannerActivity.this, "通知?", "通知内容!", mPendingIntent); 

                mNotificationManager.notify(0, mNotification); 

            } 

        }); 

         

    } 

 

 


    
[3] NSScanner种的基本用法
    来源: 互联网  发布时间: 2014-02-18
NSScanner类的基本用法

NSScanner是一个类,用于在字符串中扫描指定的字符,尤其是把它们翻译/转换为数字和别的字符串。可以在创建NSScaner时指定它的string属性,然后scanner会按照你的要求从头到尾地扫描这个字符串的每个字符。 

创建一个Scanner 

NSScanner是一个类族, NSScanner是其中公开的一类。通常,可以用scannerWithString:或localizedScannerWithString:方法初始化一个scanner。这两个方法都返回一个scanner对象并用你传递的字符串参数初始化其string属性。刚创建时scanner对象指向字符串的开头。scanner方法开始扫描,比如scanInt:,scanDouble:,scanString:intoString:。如果你要想扫描多遍,通常需要使用while循环,

例如如下代码所示:

float aFloat;
 
NSScanner *theScanner = [NSScanner scannerWithString:aString];
 
while ([theScanner isAtEnd] == NO) {
  
    [theScanner scanFloat:&aFloat];
 
    // implementation continues...
 
} 

以上例子会循环的搜索字符串中的浮点值,并赋值给aFloat参数。这个时候isAtEnd便会紧接上一次搜索到的字符位置继续搜索看是否存在下一个浮点值,直至扫描结束。扫描动作的核心就是位置的变动。位置不停地在扫描中移动,直至结束扫描。

另外,还可以通过setCaseSensitive:方法设置是否忽略大小写,默认是忽略。

  

Scanner的使用

扫描操作从上次扫描的位置开始,并且继续往后扫描直到指定的内容出现为止(如果有的话)。

以字符串“137 small cases of bananas”为例,在扫描完一个整数之后,scanner的位置将变为3,也即数字后面的空格处。通常,你会继续扫描并跳过你不关心的字符。那么你可以用setScanLocation:方法跳过某几个字符(也可以用这个方法在发生某些错误后,重新开始扫描字符串的某部分)。如果你想跳过某种特殊的字符集中的字符时,可以使用setCharactersToBeSkipped:方法。scanner在任何扫描操作时会跳过空白字符之后才开始。但是当它找到一个可以扫描的字符时,它会用全部字符去和指定内容匹配。scanner默认情况下会忽略空白字符和换行符。注意,对于忽略字符,总是大小写敏感的。例如要忽略所有原音字母,你必须使用“AEIOUaeiou”,而不能仅仅是“AEIOU”或“aeiou”。

如果你想获取当前位置的某个字符串的内容,可以使用scanUpToString:intoString:方法(如果你不想保留这些字符,可以传递一个NULL给第2个参数)。

例如,以下列字符串为例:

137 small cases of bananas
  

下面的代码,可以从字符串中找出包装规格(small cases)和包装数量(137)。 

NSString *bananas = @"137 small cases of bananas";
NSString *separatorString = @" of";
NSScanner *aScanner = [NSScanner scannerWithString:bananas];  
NSInteger anInteger;
[aScanner scanInteger:&anInteger];
NSString *container;
[aScanner scanUpToString:separatorString intoString:&container]; 

查找字符串separatorString为“ of”关系重大。默认scanner会忽略空白字符,因此在数字137后面的空格被忽略。但是当scanner从空格后面的字符开始时,所有的字符都被加到了输出字符串中,一直到遇到搜索字符串(“of”)。

如果搜索字符串是“of”(前面没空格),container的第一个值应该是“smallcases ”(后面有个空格);如果搜索字符串是“ of”(前面有空格),则container的第1个值是“small cases”(后面无空格)。

在扫描到指定字符串(搜索字符串)之后,scanner的位置指向了该字符串开始处。如果你想继续扫描该字符串之后的字符,必须先扫描指定字符串(搜索字符串)。下列代码演示了如何跳过搜索字串并取得产品类型。注意我们使用了substringFromIndex:,等同于继续扫描直到整个字符串的末尾。

 

[aScanner scanString:separatorString intoString:NULL];
NSString *product;
product = [[aScanner string] substringFromIndex:[aScanner scanLocation]];
// could also use:
// product = [bananas substringFromIndex:[aScanner scanLocation]]; 

示例:

假设你有如下字符串:

Product: Acme Potato Peeler; Cost: 0.98 73
Product: Chef Pierre Pasta Fork; Cost: 0.75 19
Product: Chef Pierre Colander; Cost: 1.27 2
 

以下代码演示了读取产品名称和价格的操作(价格简单地读作一个float),跳过“Product:”和“Cost:"子串,以及分号。注意,因为scanner默认忽略空白字符和换行符,循环中没有指定对它们的处理(尤其对于读取末尾的整数而言,并不需要处理额外的空白字符)。

NSString *string = @"Product: Acme Potato Peeler; Cost: 0.98 73\n\
Product: Chef Pierre Pasta Fork; Cost: 0.75 19\n\
Product: Chef Pierre Colander; Cost: 1.27 2\n";
 
NSCharacterSet *semicolonSet;
NSScanner *theScanner;
 
NSString *PRODUCT = @"Product:";
NSString *COST = @"Cost:";
 
NSString *productName;
float productCost;
NSInteger productSold;
 
semicolonSet = [NSCharacterSet characterSetWithCharactersInString:@";"];
theScanner = [NSScanner scannerWithString:string];
 
while ([theScanner isAtEnd] == NO)
 
{
 
    if ([theScanner scanString:PRODUCT intoString:NULL] &&
 
        [theScanner scanUpToCharactersFromSet:semicolonSet
 
            intoString:&productName] &&
 
        [theScanner scanString:@";" intoString:NULL] &&
 
        [theScanner scanString:COST intoString:NULL] &&
 
        [theScanner scanFloat:&productCost] &&
 
        [theScanner scanInteger:&productSold])
 
    {
 
        NSLog(@"Sales of %@: $%1.2f", productName, productCost * productSold);
 
    }
 
}


本地化

Scanner支持本地化的扫描,可以指定语言和方言。NSScanner只在小数点分隔符上使用locale属性(以NSDecimalSeparator为key)。你可以用lcoalizedScannerWithString:创建指定locale的scanner,或者用setLocale:方法显示地指定scanner的locale属性。如果你不指定locale,scanner假定使用默认的locale。


    
最新技术文章:
▪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的区别介绍
docker中文入门学习手册 iis7站长之家
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


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

©2012-2021,