Android アプリケーション用の sqlite データベースを作成しました。2 つのテキスト ビューと、これらの値をデータベースに挿入する更新ボタンがあります。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>