调用setText()后,TextViews重新定位。这是一个错误吗?

时间:2013-07-31 03:26:28

标签: android android-layout textview android-loader

我遇到了我见过的最奇怪的问题。我有一个基本的双窗格视图。有一个列出药物的窗格,点击药物会显示第二个窗格,其中包含有关该药物的详细信息。细节片段应该安排如下:

[Med Name]
[Med Dosage]
[Date Filled]
[Duration]

据我所知,XML代码证实了这一点:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<TextView
    android:id="@+id/nameDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginTop="48dp"
    android:freezesText="true"
    android:layout_centerHorizontal="true"
    android:text="name"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/dosageDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/nameDetailsView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="40dp"
    android:freezesText="true"
    android:text="dosage"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/dateFilledDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/dosageDetailsView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="34dp"
    android:text="date"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/durationDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/dateFilledDetailsView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29dp"
    android:text="duration"
    android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>

我使用以下代码设置每个字段显示的字符串:

@Override
public void onLoadFinished(Loader<Cursor> loader, Cursor mCursor) {
    int count = mCursor.getCount();
    String str = "There are " + count + " rows.";
    // TODO: REMOVE THIS TOAST
    Toast.makeText(getActivity(), str, Toast.LENGTH_SHORT).show();

    int nameIndex = mCursor.getColumnIndex(MedTable.MED_NAME);
    int dosageIndex = mCursor.getColumnIndex(MedTable.MED_DOSAGE);
    int dateIndex = mCursor.getColumnIndex(MedTable.MED_DATE_FILLED);
    int durationIndex = mCursor.getColumnIndex(MedTable.MED_DURATION);
    if(mCursor != null) {
        // Moves to the next row in the cursor.
        while(mCursor.moveToNext()) {
            // Create the name string
            String medName = "Name: " + mCursor.getString(nameIndex);

            // Create the dosage string
            String medDosage = "Dosage: " + mCursor.getString(dosageIndex);

            // Create a date format to parse the date string
            SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
            String epochString = mCursor.getString(dateIndex);
            long epoch = Long.parseLong(epochString);
            String date = sdf.format(new Date(epoch * 1000));

            // Create the date string
            String medDate = "Date Filled: " + date;

            // Create the duration string
            String medDuration = "Duration: " + mCursor.getString(durationIndex) + " days";

            // Setting the name
            TextView nameView = (TextView) getActivity().findViewById(R.id.nameDetailsView);
            nameView.setText(medName);

            // Setting dosage
            TextView dosageView = (TextView) getActivity().findViewById(R.id.dosageDetailsView);
            dosageView.setText(medDosage);

            // Setting the date
            TextView dateView = (TextView) getActivity().findViewById(R.id.dateFilledDetailsView);
            dateView.setText(medDate);

            // Setting the duration
            TextView durationView = (TextView) getActivity().findViewById(R.id.durationDetailsView);
            durationView.setText(medDuration);
            // end of while loop
        }
    }
}

但是当我运行该程序时,最奇怪的事情发生了。也就是说,TextViews以某种方式重新排序。 而不是所需的顺序,我不知何故得到

[Date Filled]
[Dosage]
[Name]
[Duration]

有谁能告诉我为什么地球上可能会发生这种情况?

编辑:注释掉对setText()的各种调用会导致TextViews以正确的顺序显示,虽然是硬编码的文本,而不是我想要的。

再次编辑:原来我需要做的就是清理项目。现在我知道了。

2 个答案:

答案 0 :(得分:0)

首先尝试从所有+标记中删除android:layout_below符号,并将其设为:  android:layout_below="@id/dateFilledDetailsView"。 id声明中的+符号应仅在id的第一次出现时使用。所以有如下内容并评论结果:

<TextView
    android:id="@+id/nameDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_marginTop="48dp"
    android:freezesText="true"
    android:layout_centerHorizontal="true"
    android:text="name"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/dosageDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/nameDetailsView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="40dp"
    android:freezesText="true"
    android:text="dosage"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/dateFilledDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/dosageDetailsView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="34dp"
    android:text="date"
    android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
    android:id="@+id/durationDetailsView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@id/dateFilledDetailsView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="29dp"
    android:text="duration"
    android:textAppearance="?android:attr/textAppearanceLarge" />

</RelativeLayout>

更新

为了更新答案,@ Squonk的评论完美无缺。真正的问题是R.java腐败了。清理项目解决了这个问题。

答案 1 :(得分:0)

我认为你不应该在Fragment中找到这样的视图:

TextView nameView = (TextView) getActivity().findViewById(R.id.nameDetailsView);

为什么不在Fragment中的onCreateView方法中膨胀布局文件,然后通过膨胀的布局视图查找视图。