Imageview没有在Actionbar中显示我的图标?

时间:2014-08-26 23:43:03

标签: android xml icons manifest

我有简单的图像视图应用程序......假设在viewpager模式下显示图像。但是,我的问题是它没有在操作栏顶部显示我的应用程序图标...任何帮助将不胜感激.....我知道这是一个非常小的东西,但我无法发现它。 。我想要显示我的图标,如link

所示

请参阅我的以下代码......

Mainactivity.java

 @Override
        public boolean onCreateOptionsMenu(Menu menu) {
                // Inflate menu resource file.
                getMenuInflater().inflate(R.menu.activity_main, menu);

                // Locate MenuItem with ShareActionProvider
                MenuItem item = menu.findItem(R.id.menu_item_share);

                // Fetch and store ShareActionProvider
                mShareActionProvider = (ShareActionProvider) item.getActionProvider();
                // Return true to display menu
                return true;
        }

        // Call to update the share intent
        private void setShareIntent(Intent shareIntent) {
                if (mShareActionProvider != null) {
                        mShareActionProvider.setShareIntent(shareIntent);
                }
        }

        @Override
        protected void onPause() {
                super.onPause();
                oursong.release();
        }
}

activity_main.xml中

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:icon="@drawable/icon" >

          <android.support.v4.view.ViewPager
          android:id="@+id/view_pager"
          android:layout_width="match_parent"
          android:layout_height="match_parent" 
         android:icon="@drawable/icon" />

</RelativeLayout>

的Manifest.xml

<application
        android:allowBackup="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
         <!-- Splash screen -->
        <activity
            android:name="com.manishkpr.viewpagerimagegallery.SplashScreen"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@android:style/Theme.Black.NoTitleBar" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <!-- Main activity -->
        <activity
            android:name="com.manishkpr.viewpagerimagegallery.MainActivity"
            android:label="@string/app_name" 
            android:icon="@drawable/icon">
        </activity>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:0)

如果我了解您只需要在名为菜单的文件夹中编辑文件。您的文件看起来像

<menu xmlns:android="http://schemas.android.com/apk/res/android" >
   <item
     android:id="@+id/action_settings"
     android:orderInCategory="100"
     android:showAsAction="never"
     android:title="@string/action_settings"/>
</menu>

只需更改从不并将始终

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

<item
    android:id="@+id/action_settings"
    android:orderInCategory="100"
    android:showAsAction="always"
    android:title="@string/action_settings"/>
</menu>