Hi in the below I am displaying operator list displaying using recyclerview.
For this created Table layout contains table row .each row contains data that is coming from
In your xml file, TableRow needs to include android:orientation="horizontal", because the default behavior is to layout the text views in vertical.
TableRow
android:orientation="horizontal"
Apart from that, your TableLayout should have android:orientation="vertical", because otherwise all your rows will appear on a single line.
TableLayout
android:orientation="vertical"