什么是相当于iPhone上的表视图的android?

时间:2010-10-29 06:07:20

标签: android

有人可以告诉我在iPhone上的表格视图中的等效组件是什么?

如何在Android中的iPhone上实现表视图组件?

举个例子。

2 个答案:

答案 0 :(得分:1)

您可以使用表格布局

TableLayout将视图分组为行和列。您可以使用该元素在表中指定一行。

<?xml version="1.0" encoding="utf-8"?>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" 
android:layout_width="fill_parent"
android:background="#000044">
<TableRow>
  <TextView id="@+id/textName" android:text="Name:" android:textColor="#ffffff" />
  <EditText id="@+id/editName"  android:width="240px" />
</TableRow>
<TableRow>
  <TextView id="@+id/textPasswd" android:text="Password:" android:textColor="#ffffff" />
  <EditText id="@+id/editPasswd" android:password="true" />
</TableRow>
<TableRow>
  <Button id="@+id/buttonSignIn" android:text="Sign In" />
</TableRow>
</TableLayout>

请参阅以下链接以获取更多信息

http://androiddevel.blogspot.com/2007/12/tablelayout-example.html

http://mobiforge.com/designing/story/understanding-user-interface-android-part-1-layouts

答案 1 :(得分:1)

iPhone中的TableView与Android中的ListView相同,但其UI却不同。

我在GitHub中看到有一个适用于Android的uitableview库:https://github.com/lorensiuswlt/android-uitableview

我相信这就是你要找的东西。