刚开始检查设计支持库的navigationView。
问题是,我能够更改抽屉中图标和文字的颜色,但不能改变字体大小或一般文字显示
任何人都可以帮我解决这个问题。
谢谢。
答案 0 :(得分:3)
哎呀......刚想通了。只需将NavigtionView的“app:theme”属性设置为您的样式即可。
喜欢
<android.support.design.widget.NavigationView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:id="@+id/shitstuff"
app:theme="@style/ItemStyle"
app:itemTextColor="@color/shitx"
app:menu="@menu/drawer"/>
在你的styles.xml中添加:
<style name="ItemStyle">
<item name="android:textSize">20sp</item>
<item name="android:textStyle">bold</item>
</style>