-1

我的问题是我以前从未见过的......

我正在尝试制作一个 android 应用程序,但我遇到了一个小错误,而这个非常棘手。

我有 20 个 TextView,10 个中等大小和 10 个常规大小,小的。

不知何故,这些文本视图中的两个,一个是中等的,另一个是一个小的,一个一个地改变它的文本。第一个应该显示一个文本,第二个应该显示一个数字。不知何故,它们是相反的,我一直在查看代码,但我不知道为什么。

你们中的一些人认为这是一件很容易解决的事情,我只是放错了代码,但我会告诉你,我一遍又一遍地检查,它看起来是正确的。

public void showWritings(){
    TextView tv1stSpentReportM = (TextView) findViewById(R.id.tv1stSpentReportM);
    tv1stSpentReportM.setText(vetorGastos[9].getTipoGasto());

    TextView tv2stSpentReportM = (TextView) findViewById(R.id.tv2stSpentReportM);
    tv2stSpentReportM.setText(vetorGastos[8].getTipoGasto());

    TextView tv3stSpentReportM = (TextView) findViewById(R.id.tv3stSpentReportM);
    tv3stSpentReportM.setText(vetorGastos[7].getTipoGasto());

    TextView tv4stSpentReportM = (TextView) findViewById(R.id.tv4stSpentReportM);
    tv4stSpentReportM.setText(vetorGastos[6].getTipoGasto());

    TextView tv5stSpentReportM = (TextView) findViewById(R.id.tv5stSpentReportM);
    tv5stSpentReportM.setText(vetorGastos[5].getTipoGasto());

    TextView tv6stSpentReportM = (TextView) findViewById(R.id.tv6stSpentReportM);
    tv6stSpentReportM.setText(vetorGastos[4].getTipoGasto());

    TextView tv7stSpentReportM = (TextView) findViewById(R.id.tv7stSpentReportM);
    tv7stSpentReportM.setText(vetorGastos[3].getTipoGasto());

    TextView tv8stSpentReportM = (TextView) findViewById(R.id.tv8stSpentReportM);
    tv8stSpentReportM.setText(vetorGastos[2].getTipoGasto());

    TextView tv9stSpentReportM = (TextView) findViewById(R.id.tv9stSpentReportM);
    tv9stSpentReportM.setText(vetorGastos[1].getTipoGasto());

    TextView tv10stSpentReportM = (TextView) findViewById(R.id.tv10stSpentReportM);
    tv10stSpentReportM.setText(vetorGastos[0].getTipoGasto());


    TextView tv1stSpentReportV = (TextView) findViewById(R.id.tv1stSpentReportV);
    tv1stSpentReportV.setText(String.valueOf(vetorGastos[9].getValorGasto()));

    TextView tv2stSpentReportV = (TextView) findViewById(R.id.tv2stSpentReportV);
    tv2stSpentReportV.setText(String.valueOf(vetorGastos[8].getValorGasto()));

    TextView tv3stSpentReportV = (TextView) findViewById(R.id.tv3stSpentReportV);
    tv3stSpentReportV.setText(String.valueOf(vetorGastos[7].getValorGasto()));

    TextView tv4stSpentReportV = (TextView) findViewById(R.id.tv4stSpentReportV);
    tv4stSpentReportV.setText(String.valueOf(vetorGastos[6].getValorGasto()));

    TextView tv5stSpentReportV = (TextView) findViewById(R.id.tv5stSpentReportV);
    tv5stSpentReportV.setText(String.valueOf(vetorGastos[5].getValorGasto()));

    TextView tv6stSpentReportV = (TextView) findViewById(R.id.tv6stSpentReportV);
    tv6stSpentReportV.setText(String.valueOf(vetorGastos[4].getValorGasto()));

    TextView tv7stSpentReportV = (TextView) findViewById(R.id.tv7stSpentReportV);
    tv7stSpentReportV.setText(String.valueOf(vetorGastos[3].getValorGasto()));

    TextView tv8stSpentReportV = (TextView) findViewById(R.id.tv8stSpentReportV);
    tv8stSpentReportV.setText(String.valueOf(vetorGastos[2].getValorGasto()));

    TextView tv9stSpentReportV = (TextView) findViewById(R.id.tv9stSpentReportV);
    tv9stSpentReportV.setText(String.valueOf(vetorGastos[1].getValorGasto()));

    TextView tv10stSpentReportV = (TextView) findViewById(R.id.tv10stSpentReportV);
    tv10stSpentReportV.setText(String.valueOf(vetorGastos[0].getValorGasto()));

        }

}

Medium TextViews 的名称中有一个 M,而小的 TextViews 有一个 V。在变量和 id 中。

tv2stSpentReportM 显示 tv2stSpentReportV 的文本,tv2stSpentReportV 显示 tv2stSpentReportV 的文本。

为了让事情更清楚,这是我的“Gastos.class”的代码,这是我在数组 vetorGastos[] 中的代码。

public class Gastos {


private String tipoGasto;

private double valorGasto;

public String getTipoGasto() {
    return tipoGasto;
}

public void setTipoGasto(String tipoGasto) {
    this.tipoGasto = tipoGasto;
}

public double getValorGasto() {
    return valorGasto;
}

public void setValorGasto(double valorGasto) {
    this.valorGasto = valorGasto;
}

}

在此处输入图像描述 正如我之前告诉过你的,没有人相信我,这里作为打印屏幕向你展示了我所说的内容。身份证是对的。所以现在怎么办?不相信的人,感谢您删除声誉点只是因为您不相信。展开图像,这样您就可以看到 id 是正确的。

我现在已经解决了这个问题,只需重写一个 id,它就可以了。因此,如果它只是一个放错位置的 id,我应该重写两个 id。我不知道为什么。但它解决了问题。

在此处输入图像描述

4

1 回答 1

1

我现在已经解决了这个问题。我不知道为什么,但只需重写一个 id 即可解决问题。如果是错位的ID,我应该更改两个ID,而不是重写一个,相同的写法。

于 2013-10-02T11:30:46.087 回答