索尼应该创建可用于此类uu之类的迷你教程
/** * 这是一个如何更新整个布局和一些视图的示例。对于每个视图,都使用一个包。此捆绑包必须具有布局 * 引用,即要使用的视图 ID 和内容。这个方法 * 更新一个 ImageView 和一个 TextView。* * @see Control.Intents#EXTRA_DATA_XML_LAYOUT * @see Registration.LayoutSupport */
private void updateLayout() {
mCount = 0;
mIconImage = true;
String caption = mContext.getString(R.string.text_tap_to_update);
// Prepare a bundle to update the button text.
Bundle bundle1 = new Bundle();
bundle1.putInt(Control.Intents.EXTRA_LAYOUT_REFERENCE, R.id.btn_update_this);
bundle1.putString(Control.Intents.EXTRA_TEXT, caption);
// Prepare a bundle to update the ImageView image.
Bundle bundle2 = new Bundle();
bundle2.putInt(Control.Intents.EXTRA_LAYOUT_REFERENCE, R.id.image);
bundle2.putString(Control.Intents.EXTRA_DATA_URI,
ExtensionUtils.getUriString(mContext, R.drawable.icon_extension48));
Bundle[] bundleData = new Bundle[2];
bundleData[0] = bundle1;
bundleData[1] = bundle2;
showLayout(R.layout.layout, bundleData);
}