无法解析变量的符号错误

时间:2016-08-18 18:30:29

标签: android android-studio symbols undefined-symbol

以下是代码片段。它与XML文件无关。它只是trD的一个声明,一个childcount()计数器。 与trD错误的行是:

((TextView)((TableRow)tableC.getChildAt(trD)).getChildAt(0)).setBackgroundColor(Color.LTGRAY);

//这就是它所在的位置:

try {
        for(int x=0 ; x<loopCount; x++){
            TableRow.LayoutParams params = new TableRow.LayoutParams(headerCellsWidth[x + 1], LayoutParams.MATCH_PARENT);
            params.setMargins(2, 2, 0, 0);

            //Log.d("Loadrunner", "info[x] " + x + "  " + info[x]);
            final TextView textViewB = this.bodyTextView(info[x]);
            textViewB.setTextColor(0xFF000000);
            tableRowForTableD.addView(textViewB, params);
            final int trD = tableD.getChildCount();
            //*************************************** Clickable cell
            tableRowForTableD.setClickable(true);
        }
            tableRowForTableD.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {

                index<tableRowForTableD.getChildCount(); ++index) {

                for (int itemPos = 0; itemPos < tableRowForTableD.getChildCount(); itemPos++) {
                        Log.d("Loadrunner", "TableD ViewGroup itemPos " + itemPos + " " + tableRowForTableD.getChildAt(itemPos).toString());
                        View view = tableRowForTableD.getChildAt(itemPos);
                        if (view instanceof TextView) {
                            TextView textView = (TextView) view;
                            textView.setBackgroundColor(Color.LTGRAY);
                            }
                }
                    ((TextView)((TableRow)tableC.getChildAt(trD)).getChildAt(0)).setBackgroundColor(Color.LTGRAY);

                }
            });

由于我之前使用其他语言的经验,我确实有时会发出声明问题。这可能是我目前的知识限制。我有一个前面的代码片段,其中有trC可以正常工作。

我必须在此添加trC是必要的,因为进一步向下的子计数总是返回总行数。

    final TableRow tableRowForTableC = new TableRow(this.context);
    final TextView textView = this.bodyTextView(loadRecords.getItem());
    textView.setTextColor(0xFF000000);
    tableRowForTableC.addView(textView, params);
    final int trC = tableC.getChildCount();
    //*************************************** Clickable cell
    tableRowForTableC.setClickable(true);
    tableRowForTableC.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
                textView.setBackgroundColor(Color.LTGRAY);

            ((TextView)((TableRow)tableD.getChildAt(trC)).getChildAt(0)).setBackgroundColor(Color.LTGRAY);
            ((TextView)((TableRow)tableD.getChildAt(trC)).getChildAt(1)).setBackgroundColor(Color.LTGRAY);
            ((TextView)((TableRow)tableD.getChildAt(trC)).getChildAt(2)).setBackgroundColor(Color.LTGRAY);
            ((TextView)((TableRow)tableD.getChildAt(trC)).getChildAt(3)).setBackgroundColor(Color.LTGRAY);
        }
    });
    tableRowForTableC.setOnLongClickListener(new View.OnLongClickListener() {
        @Override
        public boolean onLongClick(View v) {
               Toast.makeText(getContext(), "Item row Edit", Toast.LENGTH_SHORT).show();
        return true;}
    });

    return tableRowForTableC;
}

提前致谢。到目前为止,每个人都给了我很大的帮助。

1 个答案:

答案 0 :(得分:0)

我将trD.Childcount()移到了for循环之外。但这适用于其他任何追求桌面的人。再次,抱歉给您带来不便。 Java与C及其变体略有不同。