在TableLayout中按下Button后,Android EditText消失

时间:2012-08-08 22:19:47

标签: android button android-edittext tablelayout

一些背景
我有一个包含9行的TableLayout。我选择了TableLayout,因为我可以在一行上成功地将EditText视图排列在一起。我将在下面看到两行上有6个EditText,但为了避免重复性,我只会包含6个中的2个来节省空间,我删除了一些不必要的行,因为它们正确显示(只是TextView)。 / p>

问题
我遇到的问题是在我按布局上的按钮后,所有的EditText视图都消失了。我的按钮启动与WCF Restful Service的联系,但使用AsyncTask执行此操作。有一个等待对话框占用用户,有时会弹出Toast消息。这都是正常行为。完全按下按钮后,EditText会立即消失。

我搜索了google和stackoverflow,我看到过类似的问题,但问题与我没有相同。非常奇怪的是,这只发生在我在手机上调试时,在AVD模拟器中不会发生。

统计
电话:T-Mobile myTouchQ LG-C800(仅供参考:不是最好的手机)我扎根它。
手机Android版本:2.3.4(LG显然不相信更新)
IDE:IntelliJ 11.1
Android SDK:4.0.3
Java版本:1.7

问题
1.我应该使用不同的布局吗? 2.有什么理由发生这种情况?

这是我的Layout.xml的缩短版本:

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:id="@+id/tableLayout1"
             android:layout_width="fill_parent"
             android:layout_height="fill_parent" >
    <TableRow android:id="@+id/rowTitleWinningNumbers"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:padding="0dip" >
        <TextView android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:text="Winning Numbers" />
    </TableRow>
    <TableRow android:id="@+id/rowWinningNumbers"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:padding="0dip" >
        <EditText android:id="@+id/txtLotto1"
                  android:inputType="text"
                  android:layout_width="0dp"
                  android:layout_weight="16.67"
                  android:editable="false"
                  android:focusable="false" />
        <EditText android:id="@+id/txtLotto2"
                  android:inputType="text"
                  android:layout_width="0dp"
                  android:layout_weight="16.67"
                  android:editable="false"
                  android:focusable="false" />
    </TableRow>
    <TableRow android:id="@+id/rowTitlePlayerNumbers"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:padding="0dip" >
        <TextView android:layout_width="wrap_content"
                  android:layout_height="wrap_content"
                  android:text="Your Numbers" />
    </TableRow>
    <TableRow android:id="@+id/rowPlayerNumbers"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:padding="0dip" >
        <EditText android:id="@+id/txtPlayer1"
                  android:inputType="text"
                  android:layout_width="0dp"
                  android:layout_weight="16.67"
                  android:hint="@string/strDefaultNumber" />
        <EditText android:id="@+id/txtPlayer2"
                  android:inputType="text"
                  android:layout_width="0dp"
                  android:layout_weight="16.67"
                  android:hint="@string/strDefaultNumber" />
    </TableRow>
    <TableRow android:id="@+id/rowPlayerStatus2"
              android:layout_height="wrap_content"
              android:layout_width="wrap_content"
              android:gravity="center">
        <Button android:id="@+id/btnSubmit"
                android:text="Did I Win?!"
                android:onClick="btnSubmit_onClick" />
        <CheckBox android:id="@+id/cbxSavePlayerNumbers"
                  android:layout_height="wrap_content"
                  android:layout_width="wrap_content"
                  android:gravity="center"
                  android:lines="2"
                  android:text="Save my \nNumbers" />
    </TableRow>
</TableLayout>

编辑评论中要求的代码

public void btnSubmit_onClick(View v)
{
    try
    {
        clearStatuses();

        setLabelText(R.id.lblTimeStamp, DateTime.Today().toString());

        savePlayerNumbers();

        //This method has to perform its main task asynchronously
        getWinningLotteryNumbers();
    }
    catch(Exception ex)
    {
        ex.toString();
    }
}

private void getWinningLotteryNumbers()
{
    try
    {
        _waitDialog = ProgressDialog.show(MyActivity.this, "Working", "Getting latest Lottery drawing, Please Wait...", true);

        getButton(R.id.btnSubmit).setEnabled(false);

        String strUrl = getRString(R.string.strWCFServiceURL);

        new LottoProxy().execute(strUrl);
    }
    catch (Exception e)
    {
        resetControlStates();
    }
}

private void clearStatuses()
{
    TextView lblStatus = getLabel(R.id.lblStatus);
    lblStatus.setText("");
    lblStatus.setTextColor(Color.BLACK);

    for (int i = 0; i < 6; i++)
        resetTextBoxBackResource(getWinningBox(i), getPlayerBox(i));
}

我非常坚持这一点,所以提前感谢您的帮助。这是我的第一个真正的应用程序(而不是只是玩游戏),所以如果我犯了一个新手错误,请告诉我。

1 个答案:

答案 0 :(得分:0)

事实证明,EditText并没有消失,而是因为我的clearStatuses()方法隐藏在视图之外,该方法遍历所有可用的EditText并将其背景更改为Black。这不是等待处理这一点,因为显然在执行此操作时,您将覆盖股票EditText背景图像。

令人难以置信的部分是(正如我在上面的评论中所说)我注释掉了onClick()方法中的所有代码,但无论如何这仍然存在。因此,针对问题的指针相当困难和令人困惑。我想知道这是否是Android中的一个错误?

我学会了使用以下代码将EditText更改回通常的样式:

yourEditText.setBackgroundResource(android.R.drawable.editbox_background_normal);

我在这里找到了这个答案: Removing the background color of an EditText

警告一句,即使此代码将EditText恢复为它的样子,它可能与原始外观不匹配。我这样说是因为这就是我所经历的,但这对我来说已经足够了。