我正在尝试实施联系人列表及其字母栏。 我已经搜索了很多,但无论我有什么样的例子,都是垂直显示字母列表,但我需要在联系网格视图上方水平字母列表。
我有一些使用listview的例子,但我需要触摸滚动,所以我认为listview不是一个好主意。
编辑:请查看link。我能做的就是这个链接
A
乙
C
但我需要A B C ......等等。
任何链接或示例都非常明显
由于
答案 0 :(得分:0)
只需将整个布局更改为
即可我想说你可以用自己的代码来玩
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight=".9"
android:fastScrollEnabled="true" />
<LinearLayout
android:id="@+id/sideIndex"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#FFF"
android:gravity="center_horizontal"
android:orientation="horizontal" >
</LinearLayout>
</LinearLayout>
答案 1 :(得分:0)
这是不可能的,ListView只是垂直的 你无法使它成为水平的。 但是,您可以将水平滚动视图实现为水平ListView 但是它很难控制水平滚动视图的滚动,因为它没有setOnScrollListener。
<HorizontalScrollView
android:id="@+id/horizontalScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="Click here before scroll listview"
android:onClick="Action"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 2" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 3" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 4" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 5" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 6" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 7" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 8" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="My button 9" />
</LinearLayout>
</HorizontalScrollView>