String.xml中<string name="app_name">要改的app名字写这里</string>AndroidManifest.xml中
<application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"  //ic_launcher这个图标改下就可以改图标
        android:label="@string/app_name"

解决方案 »

  1.   


    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="osg.AndroidExample"
          android:installLocation="preferExternal"
          android:versionCode="1"
          android:versionName="1.0">
        <uses-sdk android:targetSdkVersion="8" android:minSdkVersion="8"></uses-sdk>
        <uses-feature android:glEsVersion="0x00020000"/> <!-- OpenGL min requierements (2.0) -->
        <uses-permission android:name="android.permission.INTERNET"/>    <application android:label="@string/app_name" android:icon="@drawable/osg">
            <activity android:name=".osgViewer"
                      android:label="@string/app_name" android:screenOrientation="landscape"> <!--  Force screen to landscape -->
                <intent-filter>
                    <action android:name="android.intent.action.MAIN" />
                    <category android:name="android.intent.category.LAUNCHER" />
                </intent-filter>
            </activity>    </application>
    </manifest>没有呀哥们。。
      

  2.   

     <application android:label="@string/app_name" android:icon="@drawable/osg">
    这句不就是吗? 你把osg.jpg改成其他的不就好了?
      

  3.   

    哥们,<application android:label="@string/app_name" android:icon="@drawable/osg"> 是这句我的apk的名称是osgAndroid呀不是app_name   <application android:label="@string/app_name" android:icon="@drawable/osg">
    这句不就是吗? 你把osg.jpg改成其他的不就好了?
      

  4.   

     <application android:label="@string/app_name" android:icon="@drawable/osg">
    这句不就是吗? 你把osg.jpg改成其他的不就好了?你到res文件下个values文件下的stirngs.xml下找到app_name
    如下所示:
    <string name="app_name">我是apk名字</string>
    把“我是apk名字”改成你想要的就可以了
      

  5.   

    在Eclipse下按住Ctrl点击@string/app_name点进去就可以了:
    <application android:label="@string/app_name" android:icon="@drawable/osg">
    你到res文件下个values文件下的stirngs.xml下找到app_name.