node-alljoyn
Version:
Access Alljoyn service functions
43 lines (36 loc) • 1.28 kB
text/xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<View
android:layout_width="match_parent"
android:layout_height="5dip">
</View>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="An error has been reported by AllJoyn:"
/>
<TextView
android:id="@+id/errorDescription"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="No error (ER_OK)"
/>
<LinearLayout
android:orientation="horizontal"
android:gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp">
<Button
android:id="@+id/errorOk"
android:layout_width="120dp"
android:layout_height="wrap_content"
android:text="OK"
/>
</LinearLayout>
</LinearLayout>