Questions tagged [customization]

Modifying the default state of an application to suit a user's preferences or to address the unique requirements of a particular objective.

An app that supports customization may allow users to change default values, colors, or settings and persist those changes for the next time the user runs the app.

Customization can also refer to modifying configuration settings or modifying source code to make a "prepackaged" software product meet a requirement that is unique to a particular customer or environment. For example, if an app needs to fetch data from a server, the specific details of how the app should connect to the server (URL, protocol, credentials) are usually externalized in a configuration file so they can be easily customized without requiring code modifications.

4611 questions
20
votes
4 answers

Expanding and Collapsing table view cells in ios

I have a table view of custom cells and some buttons in each cell.Clicking on any of the button inside the cell will reveal another custom view below that cell.Next click on the same button will collapse the view and need this same for all cells.I…
iOS Developer
  • 1,723
  • 2
  • 16
  • 47
20
votes
1 answer

Customizing dialog by extending Dialog or AlertDialog

I want to make a custom Dialog. Because I don't like its style, I want to have rounded rectangle rather than sharp corners. I know how to implement it by theme in AndroidManifest.xml, for example, I…
pengwang
  • 19,536
  • 34
  • 119
  • 168
19
votes
2 answers

Customize Authentication - Login Symfony2 Messages

So I'm reading the security chapter of Symfony2 Book. I understand everything, but I'd like to customize the error message if a there is a login error. In which file can I change this? This is the template: {% if error %}
{{ error.message…
Francisco Ochoa
  • 1,538
  • 4
  • 19
  • 43
19
votes
4 answers

Can I set Eclipse to only emit errors, warnings, etc. for the current project?

I want to be able to ignore warnings in other projects in my workspace when I'm concentrating on my current project. I looked through Window | Preferences and saw no such option. Eclipse obviously knows which project is current, because when I mash…
B. Clay Shannon-B. Crow Raven
  • 8,547
  • 144
  • 472
  • 862
19
votes
3 answers

Customizing Autofac's component resolution / Issue with generic co-/contravariance

First, sorry for the vague question title. I couldn't come up with a more precise one. Given these types: { TCommand : ICommand } «interface» «interface» / …
19
votes
4 answers

How to change UISearchBar Icon to custom image?

Currently, I have the default magnifying glass as my search bar icon. However, I want to put a custom image in its place, particularly this image: Custom Arrow Icon How would I go about changing the search bar default icon to the custom image?
Kolby O'Malley
  • 305
  • 2
  • 3
  • 6
19
votes
2 answers

Embed custom filter definition into jinja2 template?

I'm writing some Jinja2 templates that I'd like to be able to reuse as painlessly as possible in tangentially related projects. I have a set of custom convenience filters that I'd like the templates to "carry around" with them. Is there a Jinja2…
Daisy Sophia Hollman
  • 6,046
  • 6
  • 24
  • 35
19
votes
6 answers

Android: customize application's menu (e.g background color)

What is the way (if there is a way) to customize the menu (the one triggered by the MENU button of the phone). I'm especially interested in two things: changing the background color from the standard light gray into a darker gray how the menu items…
znq
  • 44,613
  • 41
  • 116
  • 144
19
votes
4 answers

Can I open a new tab to left of the current tab?

Issuing :tabnew somefile will open somefile in a new tab to the right of the current tab. Can I somehow get Vim to open a tab to the left of the current tab? Update: The suggested answers do allow me to open a new tab left, but they break file name…
bitmask
  • 32,434
  • 14
  • 99
  • 159
19
votes
1 answer

create d3.js axes without numbering

Is there a way to create a d3.js axis without any kind of numbering? Tickmarks are ok but just no numbers at all. Currently I'm creating my d3.js axis with the code below. Thanks in advance. // create Axis svg.selectAll("axis") …
Apollo
  • 8,874
  • 32
  • 104
  • 192
18
votes
16 answers

Best text editor with custom syntax

What is the best text editor with the ability to create custom syntax? I used notepad++, but the custom syntax was a bit limited and the plugins (namely textFX) had a few bugs to satisfy me. I heard about Vim and Emacs (which one is better?), but I…
Aethex
  • 1,502
  • 2
  • 16
  • 27
18
votes
5 answers

Oh-my-posh themes not working correctly with Powerline font and ConEmu

I use PowerShell as my shell on Windows 7. I find that ConEmu is a really good terminal. Since I am not on Windows 10, I cannot use Windows Terminal but ConEmu is not bad at all. I found out about posh-git and oh-my-posh and how they can customize…
Arafat Khan
  • 777
  • 1
  • 10
  • 24
18
votes
4 answers

Syntax Highlighting Guide for Atom

I am very pleased with the new editor by Github. Unfortunately it isn't exactly easy to customize it. I wanted to create my own Syntax Highlighting Theme, because I am not happy with the ones available to download (at least they don't seem to do…
TomTom
  • 2,820
  • 4
  • 28
  • 46
18
votes
3 answers

How can I change Delphi's 'Run' and 'Add Breakpoint' shortcut keys?

How can I change the IDE keyboard shortcuts in Delphi? I want to change "Run" from F9 to F5 and "Add Breakpoint" from F5 to F9 I'm currently programming Delphi at home and C# at work and these 2 shortcut keys are confusing because they are the…
Kobus Smit
  • 1,775
  • 2
  • 18
  • 30
18
votes
2 answers

Documenting with doxygen: put details on top

I'm using doxygen for a documentation of an Android project. I know doxygen since years. But now I have the problem that I want the details of my class like in javadoc at the top and not at the bottom. After a short Google search I found the option…
rekire
  • 47,260
  • 30
  • 167
  • 264