Advertisement
Guest User

Untitled

a guest
Jun 15th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. <style name="My" parent="android:Theme">
  2. <item name="android:textColor">?android:attr/textColorPrimary</item>
  3. <item name="android:textColorPrimary">@color/color_text_default</item>
  4. <item name="android:textColorSecondary">@color/text_hint</item>
  5. <item name="android:windowBackground">@color/color_bg_window</item>
  6. <item name="android:windowNoTitle">true</item>
  7. <item name="android:listViewStyle">@style/My.ListView</item>
  8. <item name="android:listSeparatorTextViewStyle">@style/My.ListSeparator</item>
  9. <item name="android:checkboxStyle">@style/My.Checkbox</item>
  10. <item name="android:radioButtonStyle">@style/My.RadioButton</item>
  11. <item name="android:colorBackground">@color/color_bg_window</item>
  12. <item name="android:colorForeground">@color/color_bg_window</item>
  13. <item name="android:colorForegroundInverse">@color/color_bg_window</item>
  14. </style>
  15.  
  16. <activity android:name=".DisplayNotesPopup"
  17. android:label="@string/app_name"
  18. android:screenOrientation="portrait"
  19. android:windowSoftInputMode="adjustPan"
  20. android:theme="@android:style/Theme.Dialog">
  21.  
  22. </activity>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement