奇怪的错误涉及将LinearLayout视图动态添加到LinearLayout容器

时间:2013-08-21 20:10:22

标签: android android-linearlayout android-edittext

我有这个应用程序(就像btw一样好),我需要动态地将LinearLayout视图添加到LinearLayout容器中。它的工作方式是用户在EditText中写入内容并按下键盘上的“return”键。当检测到返回键事件时,其中包含另一个EditText视图的LinearLayout将直接添加到用户刚编辑的视图下,并且焦点将切换到刚刚添加的LineaLayout内的EditText视图。这将创建一个包含EditText视图的LinearLayouts的垂直列表(请参阅下面的视频以进行说明)。这一切在我拥有的两个测试设备以及我的小型alpha测试组的五个不同设备上工作正常,我似乎无法重新创建模拟器中的错误。然而,当我在老板的设备上测试时(他在另一个国家,所以我不能只向他显示我的设备),新的EditText视图永远不会出现,并且当前EditText视图中写入的文本会以非常错误的方式消失(再次见下面的视频)。

Here是该错误的视频。预期的行为是插入另一个LinearLayout,其中包含两个EditText视图(并显示一个'2'而不是'1'),但是你可以看到没有出现新的LinearLayout,并且从当前的EditText中删除了文本视图。如果需要,我也可以录制预期行为的视频。

代码如下所示:

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    //Create a listener for the item fields
    TextView.OnEditorActionListener itemListener = new OnItemEditorListener();
    nextItem.setOnEditorActionListener(itemListener);
    nextItem.addTextChangedListener(new ListTextWatcher());
}

private LinearLayout addLine(int i, String text){
    LinearLayout line = createline(R.layout.list_item_add);
    EditText listTextView = (EditText) line.getChildAt(1); 
    if(!text.equals(""))
        listTextView.setText(text);
    itemContainer.addView(line);
    int index = i + 1;
    ((EditText) line.getChildAt(0)).setText(index + ".");
    listTextView.setOnEditorActionListener(new OnItemEditorListener());
    listTextView.addTextChangedListener(new ListTextWatcher());
    return line;
}

private class OnItemEditorListener implements TextView.OnEditorActionListener {
    @Override
    public boolean onEditorAction(TextView view, int actionId, KeyEvent event) {
        //Check if the current action is a keyDown event on the return button of the keyboard
        if(actionId == EditorInfo.TYPE_NULL && event.getAction() == KeyEvent.ACTION_DOWN){
            final EditText currentView = (EditText) view;
            //if there is no text in the current field, do nothing
            if(currentView.getText().toString().equals(""))
                return true;
            int childCount = itemContainer.getChildCount();
            LinearLayout newLine = null;
            //iterate through all existing item lines 
            for(int i = 0; i < childCount; i++){
                LinearLayout currentLine = (LinearLayout) itemContainer.getChildAt(i);
                //Check if the current iteration is looking at the line that had focus when return was pressed
                if(currentView.equals(currentLine.getChildAt(1))){
                    //check if the current line is the last item, and if so add a new line
                    if(i == childCount - 1)
                        newLine = addLine(i + 1, "");
                    //if current line is not the last line, give focus to the next line
                    else
                        newLine = (LinearLayout) itemContainer.getChildAt(i + 1);
                    break;
                }
            }
            nextItem = (EditText) newLine.getChildAt(1);
            nextItem.requestFocus();
        }
        return true;
    }
}

以下是添加的LinearLayout:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/item_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="5dp"
    android:layout_marginRight="5dp"
    android:orientation="horizontal"
    android:weightSum="1" >

<EditText
    android:id="@+id/item_index"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginLeft="50dp"
    android:layout_weight="0.15"
    android:background="@drawable/round_corners_left_white_background"
    android:enabled="false"
    android:gravity="center"
    android:inputType="none"
    android:text="@string/one_dot"
    android:textColor="@color/ts1"
    android:textSize="18sp"
    android:textStyle="bold" />

<EditText
    android:id="@+id/list_item"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_marginRight="10dp"
    android:layout_weight="0.85"
    android:background="@drawable/round_corners_right_white_background"
    android:hint="@string/new_item"
    android:lines="1" />
</LinearLayout>

这非常令人沮丧,因为只要我无法重新创建它,我就无法解决这个问题。如上所述,我有权访问的设备都没有这种方式,我也无法让仿真器这样做。

显示错误的两个设备:

  1. 索尼爱立信Xperia PLAY(Android 2.3.3)
  2. Samsung Nexus S(Android 4.1.2)
  3. 应用按预期工作的设备:

    1. HTC One S(Android 4.1.1)
    2. 三星I9000 Galaxy S(Android 2.3.5)
    3. 三星I9100 Galaxy S II(Android 2.3.4)
    4. HTC One X(Android 4.0)
    5. 谷歌Nexus 4(Android 4.2,我认为)
    6. AVD设置为显示错误的两个设备
    7. 我正在寻找一些建议,以找到导致此错误的原因,或者只是重新创建错误的一些建议。谢谢。

1 个答案:

答案 0 :(得分:1)

通过视频判断,问题可能发生在此行中,在这些设备上返回false。

 if(actionId == EditorInfo.TYPE_NULL && event.getAction() == KeyEvent.ACTION_DOWN){

尝试这样做

 if(event.getAction() == KeyEvent.ACTION_DOWN){

或者这个

 if (event.getKeyCode() == KeyEvent.KEYCODE_ENTER){

我的理论是那些设备以某种方式处理键盘事件?