2014-07-25 5 views
1

의 스타일에 영향을 미칩니다. 여기 스타일링 액션 바는 기본 설정

내 Settings.XML이있다

<PreferenceCategory android:title="Security" > 
    <CheckBoxPreference 
     android:title="Enable Passcode Protection" 
     android:summary="A 4 digit pin to protect all of your accounts." 
     android:key="prefCodePasscode" 
     android:defaultValue="false"/> 
    <com.rcd.simpleregister.PasswordDialogPreference 
     android:key="prefPasscode" 
     android:title="Set Passcode" 
     android:summary="Enable application passcode for enhanced security." 
     android:positiveButtonText="Ok" 
     android:negativeButtonText="Cancel" 
     android:dependency="prefCodePasscode"/> 
</PreferenceCategory> 

그것이에서 진행 : 안드로이드와 ((안드로이드없이 아이콘 스타일)이으로 enter image description here

: 아이콘 스타일링) enter image description here

답변

0

스타일 정의에서 android:icon을 제거하십시오. 대신 아이콘이 없어야하는 활동의 경우 AndroidManifest 요소에서 해당 활동에 대해 android:icon 속성을 설정하십시오.

<activity 
    android:name=".MyActivity" 
    android:icon="@android:color/transparent" />