qt-scan-broadcast
Version:
qt-scan-broadcast extend for weex
122 lines (103 loc) • 4.53 kB
text/xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:padding="10dp">
<TextView
android:id="@+id/switch_js_exception"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="是否开启js异常提示"
android:textColor="#000"
android:textSize="16sp"/>
<TextView
android:id="@+id/switch_js_exception_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/switch_js_exception"
android:layout_marginTop="4dp"
android:layout_toLeftOf="@+id/cb_js_exception"
android:paddingRight="20dp"
android:text="如果开启,当weex页面发生异常时,会以弹框的形式展示报错信息"
android:textColor="#BDBDBD"
android:textSize="14sp"/>
<CheckBox
android:id="@+id/cb_js_exception"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
style="@style/WXTCheckBox"
/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#e0e0e0"/>
<!--<RelativeLayout-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:gravity="center_vertical"-->
<!--android:padding="10dp">-->
<!--<TextView-->
<!--android:id="@+id/switch_storage"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:text="是否存储用户记录"-->
<!--android:textColor="#000"-->
<!--android:textSize="16sp"/>-->
<!--<TextView-->
<!--android:id="@+id/switch_storage_desc"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content"-->
<!--android:layout_below="@+id/switch_storage"-->
<!--android:layout_marginTop="4dp"-->
<!--android:layout_toLeftOf="@+id/cb_storage"-->
<!--android:paddingRight="20dp"-->
<!--android:text="如果开启,下次打开app会自动开启上次打开的悬浮窗"-->
<!--android:textColor="#BDBDBD"-->
<!--android:textSize="14sp"/>-->
<!--<CheckBox-->
<!--android:id="@+id/cb_storage"-->
<!--android:layout_width="wrap_content"-->
<!--android:layout_height="wrap_content"-->
<!--android:layout_alignParentRight="true"-->
<!--/>-->
<!--</RelativeLayout>-->
<!--<View-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="1dp"-->
<!--android:background="#e0e0e0"/>-->
<RelativeLayout
android:id="@+id/btn_config_debug_ip"
android:gravity="center_vertical"
android:padding="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/debug"
android:text="js debug server ip配置"
android:textColor="#000"
android:textSize="16sp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:layout_marginTop="4dp"
android:text="配置你要连接的js服务端ip,配置成功后,可以通过功能项【js远程调试】直接连接服务端"
android:layout_width="match_parent"
android:textColor="#BDBDBD"
android:paddingRight="20dp"
android:textSize="14sp"
android:layout_below="@+id/debug"
android:layout_height="wrap_content"/>
</RelativeLayout>
<View
android:background="#e0e0e0"
android:layout_width="match_parent"
android:layout_height="1dp"/>
</LinearLayout>