Want to inflate more than one values in one column
Opened this issue · 0 comments
hasnain-ahmad commented
With reference to the subject matter, like a excel sheet there is multiple rows against a limited number of columns. Means no of columns is different than number of rows for my dataset.
TableFixHeaders tableFixHeaders = (TableFixHeaders) findViewById(R.id.table);
MatrixTableAdapter<String> matrixTableAdapter = new MatrixTableAdapter<String>(this, new String[][]{
{
"Header 1"},
{
"Lorem",
"sed",
"do",
"eiusmod",
"tempor",
"incididunt"}
});
tableFixHeaders.setAdapter(matrixTableAdapter);
In the above code it shows only “Lorem” row not others. I want to show all rows against the one column.