|
|
@@ -23,7 +23,7 @@
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
android:orientation="vertical"
|
|
|
- >
|
|
|
+ >
|
|
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
android:id="@+id/swiperefreshlayout"
|
|
|
@@ -32,10 +32,42 @@
|
|
|
android:layout_weight="1"
|
|
|
android:visibility="visible">
|
|
|
|
|
|
- <WebView
|
|
|
- android:id="@+id/wvFaqDetail"
|
|
|
+ <com.ntels.onecable.common.widget.CustomScrollView
|
|
|
+ android:overScrollMode="never"
|
|
|
+ android:id="@+id/svBody"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"/>
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:fadingEdge="none">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/llSvbody"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:paddingLeft="15dp"
|
|
|
+ android:paddingRight="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tvFaqTitle"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ style="@style/setting_title_text"/>
|
|
|
+ </LinearLayout>
|
|
|
+ <View
|
|
|
+ style="@style/width_Divider_01"/>
|
|
|
+ <WebView
|
|
|
+ android:id="@+id/wvFaqDetail"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"/>
|
|
|
+ </LinearLayout>
|
|
|
+ </com.ntels.onecable.common.widget.CustomScrollView>
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
|
|
<LinearLayout
|