| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- ~ Copyright (c) 2015. Ncomz. All Rights Reserved
- -->
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/color_body_01"
- android:fitsSystemWindows="true"
- android:focusable="true"
- android:focusableInTouchMode="true"
- android:orientation="vertical">
- <include layout="@layout/app_toolbar"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- >
- <android.support.v4.widget.SwipeRefreshLayout
- android:id="@+id/swiperefreshlayou"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:visibility="visible">
- <com.ntels.onecable.common.widget.CustomScrollView
- android:id="@+id/svBody"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:fadingEdge="none">
- <LinearLayout
- android:id="@+id/llSvbody"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:paddingBottom="30dp"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical"
- android:background="@drawable/color_body_01"
- android:gravity="center_vertical"
- android:paddingBottom="15dp"
- android:paddingLeft="15dp"
- android:paddingRight="15dp"
- android:paddingTop="20dp">
- <TextView
- android:id="@+id/tvDeviceName"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="left"
- android:includeFontPadding="false"
- android:text="@string/layout_things_detail_02"
- android:textColor="@color/color_text_03"
- android:textSize="@dimen/size_font_03"
- android:textStyle="bold"/>
- <TextView
- android:id="@+id/tvUpdateAlram"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="7dp"
- android:gravity="left"
- android:includeFontPadding="false"
- android:text="@string/layout_things_detail_03"
- android:textColor="@color/color_text_04"
- android:textSize="@dimen/size_font_06"
- android:textStyle="bold"/>
- </LinearLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.ntels.onecable.common.widget.CustomViewPager
- android:id="@+id/vpNode_M"
- android:layout_width="match_parent"
- android:minHeight="279dp"
- android:layout_height="wrap_content">
- </com.ntels.onecable.common.widget.CustomViewPager>
- <LinearLayout
- android:id="@+id/llvpNode_M_Icon"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginBottom="2dp"
- android:gravity="center_horizontal|bottom"
- android:orientation="horizontal">
- </LinearLayout>
- </RelativeLayout>
- <LinearLayout
- android:id="@+id/llNode_O"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- </LinearLayout>
- <TextView
- android:id="@+id/tvNodeId"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="right"
- android:includeFontPadding="false"
- android:layout_marginTop="10dp"
- android:paddingRight="25dp"
- android:text="@string/layout_things_detail_04"
- android:textColor="@color/color_text_03"
- android:textSize="@dimen/size_font_03"
- android:textStyle="bold"/>
- </LinearLayout>
- </com.ntels.onecable.common.widget.CustomScrollView>
- </android.support.v4.widget.SwipeRefreshLayout>
- </LinearLayout>
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="6dp"
- android:layout_alignParentTop="true"
- android:background="@drawable/shadow_top"/>
- <ImageView
- android:layout_width="match_parent"
- android:layout_height="7dp"
- android:layout_alignParentBottom="true"
- android:background="@drawable/shadow_bottom"/>
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <View
- style="@style/width_Divider_02"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="60dp"
- android:layout_gravity="center_horizontal"
- android:background="@drawable/color_bg_01"
- android:gravity="center">
- <LinearLayout
- android:id="@+id/llBtn1"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:gravity="center">
- <TextView
- android:id="@+id/tvBtn1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@null"
- android:includeFontPadding="false"
- android:text="@string/layout_close"
- android:textColor="@drawable/d_font_color_font_01_color_font_02"
- android:textSize="@dimen/size_font_05"
- android:textStyle="bold"/>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
- </LinearLayout>
|