如何在 TableLayout 中添加 editText.addTextChangedListener

Posted

技术标签:

【中文标题】如何在 TableLayout 中添加 editText.addTextChangedListener【英文标题】:How to add editText.addTextChangedListener in TableLayout 【发布时间】:2012-04-24 11:31:20 【问题描述】:

我的工作环境是Eclipse heliose,android 1.6

我已经创建了一个 tableLayout 并成功添加了列和行,每个单元格都有一个 textView 和一个 EditText,我在访问每个单元格时遇到问题,需要将 addTextChangedListener 添加到单元格内的每个 editText。所以我需要将英文文本更改为印度文本。请提出解决方案

/**
 * Here we are going to define the grid The Grid has 1. grid's value in the
 * particular position 2.
 */

public void setGrid() 

    String questionNumber[] = null;

    Typeface fontface = Typeface.createFromAsset(getAssets(), "fonts/padmaa.ttf");
    /*
     * Table layout for the crossword elements
     */
    TableLayout tableLayout = (TableLayout) findViewById(R.id.crosswordTableLayout);
    tableLayout.setGravity(Gravity.TOP);
    tableLayout.setBackgroundColor(Color.WHITE);
    tableLayout.setScrollContainer(true);

    for (int i = 0; i < sizeOfGrid; i++) 
        /*
         * This table row params is used to set the layout params alone we
         * are not going to use this anywhere
         */
        TableRow.LayoutParams tableRowParams = new TableRow.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);
        tableRowParams.setMargins(1, 1, 1, 1);
        tableRowParams.height = 30;
        tableRowParams.gravity = Gravity.TOP;

        /*
         * Defining the row element for the crossword
         */
        TableRow tableRow = new TableRow(this);
        tableRow.setBackgroundColor(Color.WHITE);
        tableRow.setPadding(1, 0, 0, 0);
        tableRow.setGravity(Gravity.TOP);
        tableRow.setLayoutParams(tableRowParams);

        for (int j = 0; j < sizeOfGrid; j++) 

            /*
             * (1).Here we are defining headerTextView to set the clue
             * numbers. 
             * 2).columnEditText = a edit text view used to get the user
             * i/p data
             */
            TextView headerTextView = new TextView(this);
            columnEditText = new EditText(this);

            headerTextView.setGravity(Gravity.TOP);
            headerTextView.setTextSize(10);
            headerTextView.setEnabled(false);
            headerTextView.setHeight(30);
            headerTextView.setWidth(10);
            headerTextView.setTextColor(Color.BLACK);

            /* Override the edittext that has been created */
            columnEditText = (EditText) getLayoutInflater().inflate(R.layout.tablexml, null);
            columnEditText.setHeight(30);
            columnEditText.setWidth(25);
            /*
             * LinearLayout to arrange the two text view in a vertical
             * position
             */
            LinearLayout headerLinearLayout = new LinearLayout(tableRow.getContext());
            headerLinearLayout.setOrientation(LinearLayout.VERTICAL);
            headerLinearLayout.addView(headerTextView);

            /*
             * LinearLayout to arrange the first Linearlayout and Edit text
             * in a horizontal position
             */
            LinearLayout cellLinearLayout = new LinearLayout(tableRow.getContext());
            cellLinearLayout.setOrientation(LinearLayout.HORIZONTAL);
            cellLinearLayout.addView(headerLinearLayout);
            cellLinearLayout.addView(columnEditText);
            /*
             * Here we are setting the table's vertical border by some
             * workaround methods
             */
            cellLinearLayout.setLayoutParams(tableRowParams);
            /*
             * the column with complete black
             */
            if (cellValueArr[i][j] == null) 
                columnEditText.setBackgroundColor(Color.BLACK);
                headerTextView.setBackgroundColor(Color.BLACK);
                headerTextView.setGravity(Gravity.TOP);
                tableRow.setBackgroundColor(Color.BLACK);
                columnEditText.setEnabled(false);
             else 
                /*
                 * column with values and question numbers
                 */
                tableRow.setBackgroundColor(Color.BLACK);
                if (quesNumArr[i][j] == null) 
                    columnEditText.setBackgroundColor(Color.WHITE);
                    headerTextView.setBackgroundColor(Color.WHITE);
                 else if (quesNumArr[i][j] != null) 
                    /*
                     * column without question number
                     */
                    questionNumber = quesNumArr[i][j].split("~");
                    quesArrList.add(questionNumber[1]);
                    headerTextView.setText(questionNumber[1]);
                    headerTextView.setTextColor(Color.BLACK);
                    headerTextView.setBackgroundColor(Color.WHITE);
                    columnEditText.setBackgroundColor(Color.WHITE);
                

            
            columnEditText.setId(i);
            headerTextView.setId(i);

            /* add the linear layout to the row values */
            tableRow.addView(cellLinearLayout);

            int childCount = tableRow.getChildCount();
            System.out.println("Child Count ::" + childCount);

            LinearLayout linearChild = (LinearLayout) tableRow.getChildAt(columnEditText.getId());
            colText = (EditText) linearChild.getChildAt(1);
            System.out.println("GET ID " + linearChild.getChildAt(1).getId());

            colText.addTextChangedListener(new TextWatcher() 
                @Override
                public void onTextChanged(CharSequence seq, int start, int before, int count) 
                    // TODO Auto-generated method stub
                    if (seq.length() > 0 & before == 0) 
                        final String charSequence = String.valueOf(seq);
                        final String engChar = String.valueOf(seq.charAt(seq.length() - 1));
                        println("GUJ :: currentlatin ===> " + engChar + " :: charSequence ==>" + seq);
                        // Method For Type Char
                        List softList = conv.getSoftKeyPressForChar(engChar, getApplicationContext(), seq);
                        charSeq = (String) softList.get(0);
                        Typeface fontface1 = Typeface.createFromAsset(getApplicationContext().getAssets(), "fonts/padmaa.ttf");
                        colText.setTypeface(fontface1, Typeface.NORMAL);
                        colText.setText(charSeq);
                        // for placing the cursor position
                        colText.clearFocus();
                        colText.requestFocus();

                    
                

                @Override
                public void beforeTextChanged(CharSequence s, int start, int count, int after) 
                    // TODO Auto-generated method stub

                

                @Override
                public void afterTextChanged(Editable s) 
                    // TODO Auto-generated method stub
                    System.out.println("AFTER TEXT CHANGE");
                
            );

        
        /* add the row values to the table layout */
        tableLayout.addView(tableRow);
    

【问题讨论】:

为什么要以编程方式执行此操作?相反,您可以为 ListView 创建一个自定义适配器,每个项目都有 1 个 edittext 和 textview,这在设计和开发部分都很容易。 感谢您的回复,实际上我们正在创建一个填字游戏应用程序,所以我正在这样做。填字游戏的字体是古吉拉特语字符。所以需要更改用户输入的文本。它是一种这里涉及音译。 这意味着您正在使用 rows*cols 屏幕,例如 4*4 是的,我已经创建了像 rows*cols position 这样的单元格。这里我怎样才能得到每个单元格的值。第一个任务是我试图在每个单元格中插入值,稍后我需要得到那些每行的值。每个单元格值将采用古吉拉特语字体 那么确切的一点是您可以通过为 GridView 创建一个自定义适配器(具有行*列)来完成相同的任务,您可以获取/设置位于特定行和列内的 EditText 内的值. 【参考方案1】:

我没有把代码看成一个整体。但根据我最初的理解,你可以通过以下任何一种方式来做到这一点,

    正如之前有人提到的,使用网格视图。从对问题的最后评论中,我无法充分考虑这个问题,但如果它是一些滚动问题,你可以尝试将 layout-margin-bottom 设置为 5 dp,这样它就不会被裁剪(如果那是你的意思)

    继续使用表格布局,创建一次 TextWatcher() 并在循环中按顺序添加。如果您可以为每个元素设置 ID 或 setTag,这可能会很好,例如,首先 editText 获取名称,“editText1”,然后是“editText2”,依此类推。所以在一个循环中,你可以根据循环索引访问每个元素。

【讨论】:

以上是关于如何在 TableLayout 中添加 editText.addTextChangedListener的主要内容,如果未能解决你的问题,请参考以下文章

将 TableRow 动态添加到 TableLayout 的上方

TableLayout - 删除列之间的空间

c#在tablelayout面板中使用不同的子控件会影响应用程序的速度吗

将多行添加到 TableLayout

Android:如何在 TableLayout 中滑动列?

具有在android中对齐的相应标签的radiogroup的TableLayout