Hello. To save time, can I fill styles with basic features? Width, height, indents and margins (margin), font size, color, and so on. Then assign the desired style to the elements.
<resourse> <style name="Big_letter"> <item name="android:paddingLeft">15dp</item> <item name="android:paddingRight">15dp</item> <item name="android:TextSize">55sp</<item> </style> <style name="Small_letter> <item name="android:paddingLeft">10dp</item> <item name="android:paddingRight">10dp</item> <item name="android:TextSize">35sp</<item> </style> </resourse> <Button style="Big_letter" android:text="Big" android:id="@+id/btn_big"/> <Button style="Small_letter" android:text="Small" android:id="@+id/btn_sml"/> Я пробывал так сделать, приложение "выбивает" хотя студия не подчёркивает красным. Спасибо.
android:TextSize. It should be like this:android:textSize- JuriySPb ♦