* offline docs
* tow-row input method enhance bar
* long press hint to show function manual
* docs drawer
This commit is contained in:
hyb1996
2017-10-25 00:15:47 +08:00
parent 9077e4928d
commit 08d1188b33
85 changed files with 848 additions and 9076 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@@ -20,26 +20,9 @@
</android.support.design.widget.AppBarLayout>
<FrameLayout
<com.stardust.widget.EWebView
android:id="@+id/eweb_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.stardust.widget.CommonMarkdownView
android:id="@+id/markdown"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textColor="@android:color/secondary_text_light"/>
<com.wang.avi.AVLoadingIndicatorView
android:id="@+id/loading"
style="@style/AVLoadingIndicatorView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
app:indicatorName="BallSpinFadeLoaderIndicator"/>
</FrameLayout>
android:layout_height="match_parent"/>
</LinearLayout>

View File

@@ -109,33 +109,65 @@
</android.support.design.widget.AppBarLayout>
<com.stardust.scriptdroid.ui.edit.CodeMirrorEditor
android:id="@+id/editor"
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/input_method_enhance_bar"
android:layout_width="match_parent"
android:layout_height="35dp"
android:background="#77f2f3f7"
android:orientation="horizontal">
<ImageView
android:id="@+id/symbols"
android:layout_width="40dp"
android:layout_height="35dp"
android:background="?selectableItemBackgroundBorderless"
android:padding="6dp"
android:src="@drawable/ic_ali_symbol"
android:tint="#222329"/>
<com.stardust.scriptdroid.ui.edit.completion.CodeCompletionBar
android:id="@+id/code_completion_bar"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="35dp"/>
</LinearLayout>
android:layout_height="match_parent"
android:orientation="vertical">
<com.stardust.scriptdroid.ui.edit.CodeMirrorEditor
android:id="@+id/editor"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<RelativeLayout
android:id="@+id/input_method_enhance_bar"
android:layout_width="match_parent"
android:layout_height="70dp"
android:background="#77f2f3f7">
<com.stardust.scriptdroid.ui.edit.completion.CodeCompletionBar
android:id="@+id/symbol_bar"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_alignParentBottom="true"/>
<ImageView
android:id="@+id/functions"
android:layout_width="40dp"
android:layout_height="35dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="?selectableItemBackgroundBorderless"
android:padding="6dp"
android:src="@drawable/ic_ali_fx"
android:tint="#222329"/>
<com.stardust.scriptdroid.ui.edit.completion.CodeCompletionBar
android:id="@+id/code_completion_bar"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_above="@+id/symbol_bar"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/functions"/>
</RelativeLayout>
</LinearLayout>
<com.stardust.widget.EWebView
android:id="@+id/docs"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="start"/>
</android.support.v4.widget.DrawerLayout>
</LinearLayout>

View File

@@ -0,0 +1,72 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:cardBackgroundColor="@android:color/white"
app:cardCornerRadius="6dp">
<LinearLayout
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:orientation="horizontal">
<TextView
android:id="@+id/title"
android:layout_width="0dp"
android:layout_height="50dp"
android:layout_weight="1"
android:gravity="center_vertical"
android:paddingLeft="20dp"
android:textColor="#2a2a2a"
android:textSize="16sp"
tools:text="标题"/>
<ImageView
android:id="@+id/pin_to_left"
android:layout_width="47dp"
android:layout_height="47dp"
android:background="?selectableItemBackgroundBorderless"
android:padding="16dp"
android:src="@drawable/ic_ali_pin_to_left"
android:tint="#3c3c3c"/>
<ImageView
android:id="@+id/fullscreen"
android:layout_width="47dp"
android:layout_height="47dp"
android:background="?selectableItemBackgroundBorderless"
android:padding="16dp"
android:src="@drawable/ic_ali_fullscreen"
android:tint="#3c3c3c"/>
<ImageView
android:id="@+id/close"
android:layout_width="47dp"
android:layout_height="47dp"
android:layout_marginRight="8dp"
android:background="?selectableItemBackgroundBorderless"
android:padding="16dp"
android:src="@drawable/ic_ali_close"
android:tint="#3c3c3c"/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="1.2px"
android:background="#cccccc"/>
<com.stardust.widget.EWebView
android:id="@+id/eweb_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</LinearLayout>
</android.support.v7.widget.CardView>