themes

Finding all available styles defined by android platform themes

徘徊边缘 提交于 2019-12-18 09:55:14
问题 In several android styling tutorials parent style elements are used that i can not find in the android.R.style.* styles (http://developer.android.com/reference/android/R.style.html). A few examples are from the http://android-developers.blogspot.com/2011/04/customizing-action-bar.html action bar article. Nick uses parent styles like: <style name="MyDropDownNav" parent="android:style/Widget.Holo.Light.Spinner.DropDown.ActionBar"> ... </style> or <style name="MyActionBarTabStyle" parent=

PhpStorm - Can't add a theme

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-18 04:40:37
问题 I'm student and I got the free latest version of PhpStorm 9 (build PS-141.1912). I tried to add a theme and color scheme to PhpStorm so I put my theme (.icls file) in the C:\Users\me\.WebIde90\colors folder: Then I restarted PhpStorm, but I can't see my theme: 回答1: Based on your screenshot and your info, you have placed them in ~\.WebIde90\colors while it should be ~\.WebIde90\config\colors (where ~ is your user home folder -- typically C:\Users\USERNAME ). In general: A file with Color

Visual studio 2017 code color issue after update

自闭症网瘾萝莉.ら 提交于 2019-12-18 04:34:16
问题 I used to work comfortably with the Dark theme of VS. Today, I updated my VS to v.15.2(26430.4) , but it suddenly run into a visual problem. The colours of the code in Dark mode are terrible. I almost cannot see them clearly. Any way to fix it? Thanks 回答1: I found some workarounds by unchecking the Enable rich client visual experience . And then restart VS. Another method is to choose color theme to Light and switch back to Dark again. 回答2: They fixed problem and pushed another update today.

Set theme color dynamically

梦想与她 提交于 2019-12-18 01:15:37
问题 I am using themes (dynamically) in my android app, like this: my_layout.xml (extract): <TextView android:id="@+id/myItem" style="?my_item_style" /> attrs.xml (extract): <attr name="my_item_style" format="reference" /> themes.xml (extract): <style name="MainTheme.Blue"> <item name="my_item_style">@style/my_item_style_blue</item> </style> <style name="MainTheme.Green"> <item name="my_item_style">@style/my_item_style_green<item> </style> styles.xml (extract): <style name="my_item_style_blue">

Angular - Material: Progressbar custom color?

孤人 提交于 2019-12-18 01:14:46
问题 I am now trying for hours. I use Material2 and simply want to change the color of the progress-bar. I know there are those themes (primary/accent/warn) but I want to have a cutom color (green) for my progressbar. I already tried the wierdest css-combinations.. but with no effort. Maybe someone had the same problem? 回答1: I can suggest to change one of the premade primary/warn/accent colors to your custom color. In your styles.scss (if your style file is css you will have to change it to

Get Material 2 theme color scheme/palette for other elements

泄露秘密 提交于 2019-12-17 22:35:37
问题 I am building an application but I want to keep a consistent color scheme that can be changed with settings so im using Material (2) with angular(2+), but I am not sure how to get the color scheme on elements that dont directly offer the ability to color them with color="primary" so im left with trying to figure out how to obtain the color/color scheme that my Material 2 theme uses. And i want it to change when the theme changes, for instance my navbar will adapt to the theme change because

How to add multiple theme attributes to the same activity on Android Manifest?

耗尽温柔 提交于 2019-12-17 22:15:12
问题 I have an android manifest with an activity that I want to apply to styles to: <activity android:label="@string/app_name" android:name="Language" android:theme="@android:style/Theme.NoTitleBar> Is how it looks right now, but while keeping the NoTitleBar attribute, I would like to add this attribute as well: android:style/Theme.Light" But I'm just so new to Android that I can't figure it out. Please help! 回答1: You cannot have more than one theme applied at once in your manifest. I believe

How to edit default dark theme for Visual Studio Code?

心已入冬 提交于 2019-12-17 21:26:08
问题 I'm using Windows 7 64-bit. Is there a way to edit default dark theme in the Visual Studio Code? In %USERPROFILE%\.vscode folder there are only themes from the extensions, while in installation path (I used default, C:\Program Files (x86)\Microsoft VS Code ) there are files of some standard themes in \resources\app\extensions , like Kimbie Dark, Solarized Dark/Light or variants of Monokai, but there is no default dark theme. But if after all there is a possibility to edit it, then which

Combobox background not being applied in windows 8

橙三吉。 提交于 2019-12-17 20:07:21
问题 I am a little confused with wpf themes. I would like to have the wpf screens look the same on Vista, Windows 7 and Windows 8. So I have styled the components accordingly and they don't pose problems except when run on Windows 8. For example I have a combobox and I am changing its default background in xaml like this. <Style TargetType="{x:Type ComboBox}" > <Setter Property="FontStyle" Value="Normal"/> <Setter Property="Height" Value="24" /> <Setter Property="Background" Value="{StaticResource

How do I alter the default style of a button without WPF reverting from Aero to Classic?

怎甘沉沦 提交于 2019-12-17 19:24:17
问题 I've added PresentationFramework.Aero to my App.xaml merged dictionaries, as in... <Application x:Class="TestApp.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/PresentationFramework.Aero;component/themes/Aero.NormalColor.xaml" /> <ResourceDictionary Source="pack://application:,,,/WPFToolkit;component