我想要將列表視圖項目的字體更改爲marathi,我使用字體更改TextField的字體,任何人都可以告訴我如何使用列表視圖項目執行此操作。如何更改列表查看項目字體樣式到MARATHI
0
A
回答
2
創建自定義的TextView類這樣
public class CustomTextView extends TextView {
public CustomTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public CustomTextView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public CustomTextView(Context context) {
super(context);
init();
}
@SuppressWarnings("null")
private void init() {
if (!isInEditMode()) {
// default style
Typeface tf = Typeface.createFromAsset(getContext().getAssets(),
"helveticaneue_bold.ttf");
setTypeface(tf);
}
}
將您的字體樣式(Marathi.ttf文件,在這種情況下,我已經使用helveticaneue_bold.ttf)資產的文件夾。
你行,你已經膨脹到ListView控件在現在,而不是TextView的使用下面
<yourpackagename.CustomTextView
android:id="@+id/tv_title"
style="@style/buttontext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/company_profile" >
</yourpackagename.CustomTextView>
0
您必須實現CustomAdapter或BaseAdapter來實現這一目標。在getview方法膨脹其他xml文件,其中包含文本視圖和settypeface它
相關問題
- 1. 更改列表查看項目選擇樣式
- 2. 更改所選列表項目的字體樣式
- 3. 更改列表查看項目元素
- 4. 更改列表查看項目高度
- 5. 更改列表框項目樣式
- 6. 如何更改微調項目的字體樣式
- 7. 如何將列表視圖項的字體設置爲Marathi
- 8. 如何更改列表項目的自定義字體
- 9. 如何更改列表框中項目的字體顏色(wpf)
- 10. Devanagari/Marathi字體
- 11. 更改HTML表格的字體樣式?
- 12. 更改字體樣式
- 13. 更改字體樣式
- 14. Angularjs更改字體樣式
- 15. 支持marathi字體
- 16. 如何更改此列表的樣式?
- 17. MultiColumn列表查看項目到文件
- 18. 列表查看項目(和子項目)
- 19. 通知列表查看項目中的更改
- 20. 如何在iOS中更改textview的字體系列和樣式?
- 21. 如何更改.jumbotron h1字體系列中的樣式
- 22. ActionBar action查看項目樣式
- 23. 如何更改後備字體的字體大小和樣式
- 24. JQuery:Click()更改列表項字體
- 25. 更改列表首選項的字體
- 26. 更改windows phone中的第一個列表框項目樣式
- 27. 無法更改列表框中所選項目的樣式
- 28. 更改複選框列表中所選項目的樣式
- 29. 在運行時更改列表框項目樣式
- 30. Android列表查看所選項目樣式直到用戶滾動才顯示
這已經被回答了很多次...:http://stackoverflow.com/questions/12128331/how-to-change-fontfamily-of -textview-in-android http://stackoverflow.com/questions/2973270/using-a-custom-typeface-in-android http://stackoverflow.com/questions/3651086/android-using-custom-font http: //stackoverflow.com/questions/16901930/memory-leaks-with-custom-font-for-set-custom-font等等...... – Cehm