ソニーは、この 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);
}