I have a table in my android studio app. The problem is that is isn't responsive. How can I turn it to responsive layout?
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:stretchColumns="1"
android:background="@drawable/white">
<TableRow>
<TextView
android:layout_column="1"
android:textColor="#000000"
android:text="Table"
android:padding="3dip"/>
<TextView
android:text="SERIA NR. 11691428"
android:textColor="#000000"
android:padding="3dip"/>
</TableRow>
</TableLayout>