0

我已经创建了 wifi 连接列表。此列表位于文本视图内。如果受保护,如何使 textview 可单击并通过连接打开弹出窗口以插入密码?谢谢

4

1 回答 1

1

如果您在 textview 中有一个整体,您将很难检测到 onClick,也许您应该尝试使用带有适配器的标准 ListView。在这里,您将找到一个简单的教程。

将适配器设置为这样的列表视图:

<ListView
    android:id="@+id/networks_list"
    style="@android:style/Theme.Holo.Light"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="1" >
</ListView>

在适配器内部膨胀类似于以下内容,根据需要添加元素:

<TextView
        android:id="@+id/net_name"
        style="@android:style/TextAppearance.Holo.Medium.Inverse"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="" />
于 2013-06-20T09:51:31.267 回答