Отож, коли Android 5.0 вийшов, мені було цікаво, як реалізувати анімовані піктограми панелі дій.
Ця бібліотека тут реалізує це добре для мене, але оскільки в бібліотеці appcompat v7 є, як це можна реалізувати?
Бібліотека посилається на це в themes.xml
<item name="drawerArrowStyle">@style/Widget.AppCompat.DrawerArrowToggle</item>
Під цей стиль
<style name="Base.V7.Theme.AppCompat" parent="Platform.AppCompat">
ОНОВЛЕННЯ
Я реалізував це за допомогою v7 DrawerToggle. Однак я не можу це зробити. Будь ласка, допоможіть
Я знайшов стиль для нього в v7 styles_base.xml
<style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="">
<item name="color">?android:attr/textColorSecondary</item>
<item name="thickness">2dp</item>
<item name="barSize">18dp</item>
<item name="gapBetweenBars">3dp</item>
<item name="topBottomBarArrowSize">11.31dp</item>
<item name="middleBarArrowSize">16dp</item>
<item name="drawableSize">24dp</item>
<item name="spinBars">true</item>
</style>
Я додав це до своїх стилів і не працював. Також додано в мій attr.xml
<declare-styleable name="DrawerArrowToggle">
<!-- The drawing color for the bars -->
<attr name="color" format="color"/>
<!-- Whether bars should rotate or not during transition -->
<attr name="spinBars" format="boolean"/>
<!-- The total size of the drawable -->
<attr name="drawableSize" format="dimension"/>
<!-- The max gap between the bars when they are parallel to each other -->
<attr name="gapBetweenBars" format="dimension"/>
<!-- The size of the top and bottom bars when they merge to the middle bar to form an arrow -->
<attr name="topBottomBarArrowSize" format="dimension"/>
<!-- The size of the middle bar when top and bottom bars merge into middle bar to form an arrow -->
<attr name="middleBarArrowSize" format="dimension"/>
<!-- The size of the bars when they are parallel to each other -->
<attr name="barSize" format="dimension"/>
<!-- The thickness (stroke size) for the bar paint -->
<attr name="thickness" format="dimension"/>
</declare-styleable>
Але виходить з ладу і повідомляє про помилку типу кольорів при цьому. Що я пропускаю?
mDrawerToggle.syncState();
виправлено.