Commit f47abb08 authored by Induwara Ekanayake's avatar Induwara Ekanayake

created table view

parent a11244ad
......@@ -6,4 +6,73 @@
android:layout_height="match_parent"
tools:context=".Insurance_view_Activity">
<LinearLayout
android:id="@+id/linearLayout2"
android:layout_width="match_parent"
android:layout_height="65dp"
android:background="#955BE2"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/view_table"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TableLayout
android:id="@+id/view_table"
android:layout_width="match_parent"
android:layout_height="670dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout2">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@android:drawable/bottom_bar">
<TextView
android:id="@+id/textView25"
android:layout_width="30dp"
android:layout_height="40dp"
android:layout_weight="1"
android:background="#EEEEEE"
android:gravity="center_horizontal"
android:text="@string/view_table_head1"
android:textColor="#251D1D"
android:textIsSelectable="false"
android:textSize="20sp"
app:fontFamily="sans-serif-black" />
<TextView
android:id="@+id/textView26"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_marginLeft="0dp"
android:layout_weight="1"
android:background="#EEEEEE"
android:gravity="center_horizontal"
android:text="@string/view_table_head2"
android:textColor="#000000"
android:textSize="20sp"
app:fontFamily="sans-serif-black" />
<TextView
android:id="@+id/textView27"
android:layout_width="35dp"
android:layout_height="40dp"
android:layout_weight="1"
android:background="#EEEEEE"
android:gravity="center_horizontal"
android:text="@string/view_table_head3"
android:textColor="#000000"
android:textSize="20sp"
app:fontFamily="sans-serif-black" />
</TableRow>
</TableLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment