我绝对是初学者。
我有一个简单的列表视图,我不知道它的工作原理和唯一的视图代码是:
String[] from = new String[]{ TITLE };
int[] to = new int[]{ R.id.ViewTitleNotes };
就是这样,我想自定义这个listview有点像更改字体或为listview页面设置背景,但我不能! 如果我更改页面的背景,每个listview项目将采用该图像,每个listview项目高度将填充整个页面! " R.id.ViewTitleNotes"没有这样的代码:" TextView ViewTitleNotes =(textView)findViewById(R.id.ViewTitleNotes);"
我不知道它是如何工作的!
这里是这个listview的截图:那个小的选择是textview我想改变它的字体
提前致谢。
答案 0 :(得分:0)
更改textView的字体看看: How to change fontFamily of TextView in Android
在listview的背景中设置图像请看这个链接: http://www.android-examples.com/set-drawable-image-as-listview-background-in-android/
并链接以下更复杂的listView: http://www.androidhive.info/2014/07/android-custom-listview-with-image-and-text-using-volley/
还建议使用recyclerview而不是listView。 for recyclerview,link bellow: https://www.sitepoint.com/mastering-complex-lists-with-the-android-recyclerview/