jimu-decompiled/resources/res/layout/dialog_blockly_webview.xml
2025-05-13 19:24:51 +02:00

58 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:gravity="right"
android:orientation="horizontal"
android:id="@+id/llStep"
android:background="@color/bg_287EF1"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="@dimen/diy_browse_step_height"
android:layout_alignParentBottom="true">
<ImageView
android:id="@+id/imgPreviousStep"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/diy_browse_previous_step"
android:scaleType="centerInside"/>
<TextView
android:textSize="@dimen/txt_content_1"
android:textColor="@android:color/white"
android:gravity="center"
android:id="@+id/tvStep"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:text="1/10"/>
<ImageView
android:id="@+id/imgNextStep"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="@dimen/diy_icon_back_margin_left"
android:src="@drawable/tab_icon_complete"
android:scaleType="centerInside"/>
</LinearLayout>
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/llStep"/>
<LinearLayout
android:gravity="center"
android:layout_gravity="center"
android:orientation="vertical"
android:id="@+id/ll_wait"
android:background="@color/theme_background"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/wait_img"
android:background="@drawable/anima_loading"
android:layout_width="55dp"
android:layout_height="55dp"/>
</LinearLayout>
</RelativeLayout>