我正在制作一个有一个列表视图的应用程序(特价:P),我希望它有一个类似于twitter的源码。
现在我已经取得了相同的结果,但不同之处在于,如果您在Twitter应用程序中滚动,滚动条会出现在屏幕右侧,但是,对于我的应用程序,它会显示在列表视图中。< / p>
请看屏幕截图,看看我的意思
http://dl.dropbox.com/u/14534468/I.png
http://dl.dropbox.com/u/14534468/twitter.png
这是我正在使用的xml代码。
<ListView
android:id="@+id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:cacheColorHint="#00000000"
android:layout_margin="10dp"
android:background="@drawable/rounded"
android:divider="#d1d1d1"
android:dividerHeight="1dp" />
舍入为
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffff" />
<corners android:radius="5dp" />
</shape>
任何想法如何实现同样的目标?
答案 0 :(得分:2)
你必须为你的项目提供边距,而不是ListView - 或者它可以使用给ListView的填充。