Sans Serif 서체를 사용하려면 다음과 같이하십시오. 당신의 styles.xml 파일에서
, 글꼴
<style name="roboto_regular_textview" parent="@android:style/Widget.TextView">
<item name="android:fontFamily">sans-serif</item>
</style>
<style name="roboto_medium_textview" parent="@android:style/Widget.TextView">
<item name="android:fontFamily">sans-serif</item>
<item name="android:textStyle">bold</item>
</style>
<style name="roboto_light_textview" parent="@android:style/Widget.TextView">
<item name="android:fontFamily">sans-serif-light</item>
</style>
및 layout.xml 파일에서 스타일을 정의가
<TextView
style="@style/roboto_regular_textview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@color/black_text_color"
android:textSize="30sp" />
, 감사는 산세 리프 - 매체 보인다 것은 작동하지만, 단지 아무튼한다 나타나지 마. 왜 그런지 모르겠다. –