<intent-filter>
     <action android:name="android.intent.action.VIEW" />
     <category android:name="android.intent.category.DEFAULT" />
     <data android:scheme="http"/> 
</intent-filter>
做一些操作之后会弹出我的应用,但是我想修改显示出来的应用名.请各位大侠帮帮忙~

解决方案 »

  1.   

    http://topic.csdn.net/u/20120413/10/80AB72D8-DE0D-47E1-8987-CE767912D236.html
      

  2.   

    不是太明白LZ到底想说啥?<intent-filter>跟应用名有啥关系
      

  3.   

    一个activity在AndroidManifest.xml中注册<action android:name="android.intent.action.VIEW" /> 只要有应用发送这个action我就能接收到 然后就能显示出所有接收到这个action的应用列表
      

  4.   

    <intent-filter android:icon="drawable resource"
                   android:label="string resource"
                   android:priority="integer" >
        . . .
    </intent-filter>加个android:label属性试试
      

  5.   

    貌似有些复杂.不过应用名是AndroidManifest.xml文件的<application>中android:label=""属性来决定的.