- Apply style programmatically android
- Android: установить стиль просмотра программно
- romannurik / AndroidManifest.xml
- This comment has been minimized.
- jrub commented Jun 24, 2015
- This comment has been minimized.
- ursusursus commented Feb 19, 2016
- Android: set view style programmatically
- Related Posts
- android – How do I display a CalendarView in an AlertDialog?
- How do I convert a PSD design to Android xml?
Apply style programmatically android
Paris lets you define and apply styles programmatically to Android views, including custom attributes.
- Apply styles programmatically at any time.
- Combine multiple styles together.
- Create styles programmatically (as opposed to using XML).
- Use annotations to easily support custom attributes (inspired by Barber).
- Declare explicitly supported styles for your custom views.
- And much more.
In your project’s build.gradle :
To use Paris in a library module see Library Modules.
Applying an XML-Defined Style
Where myView is an arbitrary view instance, MyStyle an XML-defined style, and style an extension function provided by Paris. Many but not all attributes are supported, for more see Supported View Types and Attributes.
Combining 2 or More Styles
In cases where there’s some overlap the attribute value from the last style added prevails. For more see Combining Styles.
Defining Styles Programmatically
Can be combined with style resources as well:
Custom View Attributes
Attributes are declared as followed:
The custom view is annotated with @Styleable and @Attr :
The @Attr -annotated methods will be called by Paris when the view is inflated with an AttributeSet or when a style is applied.
Attributes are declared as followed for the 2 subviews we’d like to be able to style:
The subview fields are annotated with @StyleableChild :
The title and subtitle styles can now be part of MyHeader styles:
Attention: Extension functions like titleStyle and subtitleStyle are generated during compilation by the Paris annotation processor. When new @StyleableChild annotations are added, the project must be (re)compiled once for the related functions to become available.
Linking Styles to Views
Helper methods are generated for each linked style:
Attention: Extension functions like addRed and addGreen are generated during compilation by the Paris annotation processor. When new @Style annotations are added, the project must be (re)compiled once for the related functions to become available.
See examples and browse complete documentation at the Paris Wiki.
If you still have questions, feel free to create a new issue.
We love contributions! Check out our contributing guidelines and be sure to follow our code of conduct.
Источник
Android: установить стиль просмотра программно
Как установить style атрибут программно?
Технически вы можете применять стили программно, в любом случае с пользовательскими представлениями:
Конструктор с одним аргументом используется при создании экземпляров представлений программным способом.
Так что цепочка этого конструктора супер, который принимает параметр стиля.
Или, как @Dori указал просто:
Что сработало для меня:
- Используйте конструктор с тремя аргументами (без этого не получится)
Обновление : во время ответа на этот вопрос (середина 2012 года, уровень API 14-15), программная настройка представления не была возможной (даже если были некоторые нетривиальные обходные пути), хотя это стало возможным после более позднего API релизы. Смотрите ответ @ Blundell для деталей.
СТАРЫЙ ответ:
Вы не можете установить стиль представления программно, но вы можете найти эту тему полезной.
Для новой кнопки / TextView:
Для существующего экземпляра:
Для изображения или макетов:
Если вы хотите продолжить использовать XML (что не позволяет сделать принятый ответ) и установить стиль после создания представления, вы можете использовать парижскую библиотеку, которая поддерживает подмножество всех доступных атрибутов.
Поскольку вы надуваете свое представление из XML, вам нужно указать идентификатор в макете:
Затем, когда вам нужно изменить стиль программно, после того, как макет был раздут:
Отказ от ответственности: я первый автор указанной библиотеки.
Вы можете применить стиль к своей деятельности, выполнив:
или Android по умолчанию:
в вашей деятельности, до setContentView() .
Ни один из приведенных ответов не является правильным.
Вы можете установить стиль программно.
Длинный ответ Вот мой фрагмент, чтобы программно установить пользовательский стиль на ваш взгляд:
1) Создайте стиль в вашем файле styles.xml
Не забудьте указать свои пользовательские атрибуты в файле attrs.xml
Мой файл attrsl.xml:
Обратите внимание, что вы можете использовать любое имя для вашего стиля (мой CustomWidget)
Теперь давайте установим стиль для виджета программно. Вот мой простой виджет:
И, наконец, реализация класса StyleLoader
Это довольно старый вопрос, но решение, которое сработало для меня сейчас, заключается в использовании 4-го параметра конструктора defStyleRes — если доступно .. на виду . для установки стиля
Следующие работы для моих целей (kotlin):
Это мой простой пример, ключом является ContextThemeWrapper обертка, без нее мой стиль не работает, и используется конструктор с тремя параметрами View.
простой путь проходит через конструктор
Я не предлагаю использовать ContextThemeWrapper, поскольку это делает это:
Указанная тема будет применена поверх темы базового контекста.
Что может привести к нежелательным результатам в вашем приложении. Вместо этого я предлагаю новую библиотеку «Париж» для этого от инженеров Airbnb:
Определите и примените стили к представлениям Android программно.
Но после некоторого времени использования я обнаружил, что он на самом деле довольно ограничен, и я перестал его использовать, потому что он не поддерживает много свойств, которые мне нужны, из коробки, поэтому нужно проверить и решить как всегда.
Источник
romannurik / AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
manifest . > |
. |
Make sure your app (or individual activity) uses the |
theme with the custom attribute defined. —> |
application android : theme = » @style/AppTheme » . > |
. |
application > |
manifest > |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
public class MyActivity extends Activity < |
protected void onCreate ( Bundle savedInstanceState ) < |
super . onCreate(savedInstanceState); |
. |
// Pass in the theme attribute that’ll resolve to the |
// desired button style resource. The current theme |
// must have a value set for this attribute. |
Button myButton = new Button ( this , null , R . attr . myButtonStyle); |
myButton . setText( » Hello world » ); |
ViewGroup containerView = ( ViewGroup ) findViewById( R . id . container); |
containerView . addView(myButton); |
> |
> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
The convention is to put the And TextView initialization does: But it doesn’t recognize fontFamily attribute :S Is it a normal behaviour? This comment has been minimized.Copy link Quote reply jrub commented Jun 24, 2015Very useful indeed, thanks Roman. This should definitely be included into the official documentation for Themes & Styles (http://developer.android.com/guide/topics/ui/themes.html) This comment has been minimized.Copy link Quote reply ursusursus commented Feb 19, 2016For me this does not apply layout params like layout_width, layout_height when I have them in my style. Only default wrap_content LayoutParams gets created in both dimensions Источник Android: set view style programmaticallyPosted by: admin November 16, 2017 Leave a comment How to set style attribute programmatically? Technically you can apply styles programmatically, with custom views anyway: The one argument constructor is the one used when you instantiate views programmatically. So chain this constructor to the super that takes a style parameter. Or as @Dori pointed out simply: You cannot set a view’s style programmatically yet, but you may find this thread useful. Update: At the time of answering this question (mid 2012, API level 14-15), setting the view programmatically was not an option (even though there were some non-trivial workarounds)whereas this has been made possible after the more recent API releases. See @Blundell’s answer for details. What worked for me:
You can apply a style to your activity by doing: or Android default: in your activity, before setContentView() . Non of the provided answers are correct. You CAN set style programatically. Long answer. 1) Create a style in your styles.xml file Do not forget to define your custom attributes in attrs.xml file My attrsl.xml file: Notice you can use any name for your styleable (my CustomWidget) Now lets set the style to the widget Programatically And finally StyleLoader class implementation I used views defined in XML in my composite ViewGroup, inflated them added to Viewgroup. This way I cannot dynamically change style but I can make some style customizations. My composite: and my view in xml where i can assign styles: You can create the xml containing the layout with the desired style and then change the background resource of your view, like this. Related Postsandroid – How do I display a CalendarView in an AlertDialog?Questions: I’m trying to display the CalendarView in an Alert Dialog, but all that shows up is the month/year and the days of the week. These are the contents of the layout file: How do I convert a PSD design to Android xml?Questions: Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Stack Over. Источник |