我正在生成列表视图,如下所示:
setListAdapter(new ArrayAdapter<String>(this, R.layout.row, fileListS));
其中“row”是以下xml文件:
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="14sp">
</TextView>
是否有一种简单的方法可以增加生成的列表视图中的项目列表之间的间距? 如果我使用的是ListView而不是TextView,我想我可以使用:
android:dividerHeight="10.0sp"
但是我现在可以做什么才能使用TextView?
谢谢,
TJ
答案 0 :(得分:0)