如何在Android

时间:2017-05-30 03:41:06

标签: java android android-layout android-studio tablelayout

我正在尝试使用表格布局3x3创建一个应用程序(我已经用Java完成)。目前,我有3个活动; Activity A包含一个ImageView,用于打开Activity B,它包含一个EditText,一个TableLayout(填充TextViews)和一个带有2个ImageView的LinearLayout。一切都包含在ConstraintLayout中。 TableLayout中的每个9 TextView都会打开Activity C,这是一个更新TableLayout的NumberPicker。

我的最终目标是通过维数组获取TableLayout内容。

我的问题是填充后如何获取TableLayout的内容?

正如您在活动B结尾处的代码中所看到的,我已经创建了一个方法 PrintTable 来向Console打印TableLayout的内容。我试过,但我得到TableLayout为null,因此我无法访问它。 老实说,如果填充了表格布局,我就会陷入如何从表格布局中获取数据,如何实现打印方法。

活动A

public class MainActivity extends AppCompatActivity{
    ImageView button1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button1 = (ImageView) findViewById(R.id.add_card);

    }

    public void openThreeByThreeCard(View v) {
        Intent intent = new Intent(this,ThreeByThree.class);
        startActivity(intent);
    }
}

活动B

public class ThreeByThree extends AppCompatActivity {

    private ArrayList<Integer> A;
    private ArrayList<Integer> B;
    private ArrayList<Integer> C;
    TableLayout threeByThree;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        threeByThree;= (TableLayout) findViewById(R.id.Three_By_Three_Table);
        setContentView(R.layout.activity_three_by_three);
        A = new ArrayList<Integer>();
        B = new ArrayList<Integer>();
        C = new ArrayList<Integer>();

        for (int i = 1; i < 22; i++) {
            if (i > 0 && i < 8)
                A.add(i);
            if (i > 7 && i < 15)
                B.add(i);
            if (i > 14 && i < 22)
                C.add(i);
        }
    }

    public void openNumberPicker(View v) {

    //This opens a Number Picker to fill up the table one by one

        intent.putExtra("Cell ID", v.getId());
        startActivityForResult(intent, 17);
    }

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (requestCode == 17 ) {
            if (resultCode == RESULT_OK) {

                }
            } else if (resultCode == 5 && data.getStringExtra("Number to Change") != null) {
                                   }
                }
            } else if (resultCode == RESULT_CANCELED) {
                    }
                }
            }
        }
    }

    public void printTable(View v) {

    //This method is to get the contents of the table once it is filled

        String rowContent = null;
        for (int i = 0; i < threeByThree.getChildCount(); i++) {
            TableRow row = (TableRow) threeByThree.getChildAt(i);
            for (int j = 0; j < row.getChildCount(); j++) {
                TextView currentCell = (TextView) row.getChildAt(j);
                rowContent = currentCell.getText() + ", ";
            }
            Log.d("Content of Row is:", rowContent);
        }
    }
}

此致 Ne0R @铜

1 个答案:

答案 0 :(得分:1)

TableLayout是一个由TableRow元素组成的LinearLayout(垂直)。每个TableRow是另一个由单元格元素组成的LinearLayout(水平)。

因此,您可以使用getChildAt获取TableRow,然后再使用getChildAt来获取该行中的单元格:

   public View getTableLayoutCell(TableLayout layout, int rowNo, int columnNo) {
        if (rowNo >= layout.getChildCount()) return null;
        TableRow row = (TableRow) layout.getChildAt(rowNo);          

        if (columnNo >= row.getChildCount()) return null;
        return row.getChildAt(columnNo);

   }