0

我正在尝试在 Sony SmartEyeglass 上实现卡片文本更改,但我遇到了布局问题。我采用了 SDK 中的高级布局示例并对其进行了修改。

我有一个显示标题和正文的默认 xml 布局。我将“标题”和“正文”作为 xml 文件中的默认字符串,并尝试将标题和正文更新为“已更新”和“已更新正文”。但是,结果显示了默认布局(带有“标题”和“正文”)以及重叠在它们之上的文本“更新的正文文本”。

为什么标题没有编辑,正文怎么在xml TextView之上?

以下是相关代码:

@Override
public void onResume() {
    showingDetail = false;

    ControlListItem item = createControlListItem(namePosition);
    showLayout(item.dataXmlLayout, null);
    sendListCount(item.layoutReference, quotedPeople.size());
    sendListPosition(item.layoutReference, namePosition);
    //utils.sendTextViewLayoutId(R.id.names_body);
    sendListItem(item);
}

private ControlListItem createControlListItem(final int position) {
    Log.d(Constants.LOG_TAG, "position = " + position);

    ControlListItem item = new ControlListItem();
    item.layoutReference = R.id.names_gallery;
    item.dataXmlLayout = R.layout.smarteyeglass_quotes_names_gallery;
    item.listItemId = position;
    item.listItemPosition = position;

    List<Bundle> list = new ArrayList<Bundle>();

    // Header data
    Bundle headerBundle = new Bundle();
    headerBundle.putInt(Control.Intents.EXTRA_LAYOUT_REFERENCE, R.id.names_title);
    headerBundle.putString(Control.Intents.EXTRA_TEXT, "Updated");
    list.add(headerBundle);

    // Body data
    Bundle bodyBundle = new Bundle();
    bodyBundle.putInt(Control.Intents.EXTRA_LAYOUT_REFERENCE, R.id.names_body);
    bodyBundle.putString(Control.Intents.EXTRA_TEXT, "Updated body title");
    list.add(bodyBundle);

    item.layoutData = list.toArray(new Bundle[list.size()]);
    return item;
}

这是xml布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="@dimen/smarteyeglass_control_width"
    android:layout_height="@dimen/smarteyeglass_control_height"
    tools:ignore="PxUsage,UselessParent,HardcodedText" >

    <TextView
        android:id="@+id/names_title"
        android:layout_width="400px"
        android:layout_height="30px"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_centerVertical="true"
        android:layout_marginTop="5px"
        android:paddingLeft="6px"
        android:background="@android:color/black"
        android:text="Title"
        android:textColor="@android:color/white"
        android:textSize="@dimen/smarteyeglass_text_size_normal" />

    <View
        android:id="@+id/names_divider"
        android:layout_width="400px"
        android:layout_height="2px"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/names_title"
        android:background="@android:color/white" />

    <TextView
        android:id="@+id/names_body"
        android:layout_width="400px"
        android:layout_height="78px"
        android:layout_marginTop="5px"
        android:layout_marginLeft="10px"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/names_divider"
        android:textColor="@android:color/white"
        android:textSize="@dimen/smarteyeglass_text_size_small"
        android:text="Body" />

    <Gallery
        android:id="@+id/names_gallery"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
    </Gallery>

</RelativeLayout>
4

1 回答 1

0

我们刚刚测试了您的示例,文本变化良好。看起来您可能为图库项目选择了错误的 XML。您开始smarteyeglass_layout_test_gallery使用smarteyeglass_item_gallery.

于 2014-12-09T14:45:38.440 回答