我为我的 android 应用程序创建了一个 sqlite 数据库。我有两个文本视图和一个将这些值插入数据库的更新按钮。最初表格列标签看起来不错,因为我android:stretchColumns="*"
在<TableLayout>
. 但是当我输入时,这些值不会显示在特定列下!我希望列格式正确。如何才能做到这一点?有什么建议么?提前致谢。这是我的视图数据库代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:background="#cc0000"
android:fadingEdge="vertical"
android:orientation="vertical" >
<TableLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:stretchColumns="*" >
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="50"
android:text="ID"
android:textColor="#eeddff"
android:textSize="15sp"
android:textStyle="italic"
android:typeface="serif" />
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="50"
android:text="Subject Name"
android:textColor="#eeddff"
android:textSize="15sp"
android:textStyle="italic"
android:typeface="serif" />
<TextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="50"
android:text="Assignment Number"
android:textColor="#eeddff"
android:textSize="15sp"
android:textStyle="italic"
android:typeface="serif" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="5">
<TextView
android:id="@+id/dataDisplay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#eeddff"
android:textSize="15sp"
android:textStyle="italic"
android:typeface="serif" />
</TableRow>
</TableLayout>