Inside Table layout table rows contents is not displaying horizontally in android using recyclerview

前端 未结 2 1309
鱼传尺愫
鱼传尺愫 2021-01-28 23:36

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

相关标签:
2条回答
  • 2021-01-29 00:22

    please share your SwipeRecyclerViewAdapter and xml .

    or you have to update your RecyclerView xml file

    0 讨论(0)
  • 2021-01-29 00:30

    In your xml file, TableRow needs to include android:orientation="horizontal", because the default behavior is to layout the text views in vertical.

    Apart from that, your TableLayout should have android:orientation="vertical", because otherwise all your rows will appear on a single line.

    0 讨论(0)
提交回复
热议问题