2016-08-08 19 views

答えて

1

あなたのstyle.xmlファイルにこれを追加することにより、themexmlレイアウトを経由してそれを行うことができます。

<style name="MyTheme" parent="@style/Theme.AppCompat.Light"> 
    <item name="icon">@drawable/actionbar_logo</item> 
    </style> 

それともこれを追加することによって、あなたの活動の内部でプログラム的にこれを追加します:

getSupportActionBar().setLogo(R.drawable.ic_launcher); 
getSupportActionBar().setDisplayUseLogoEnabled(true); 
関連する問題