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

44 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/ubtn_test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ubtn test"
android:onClick="onClick"/>
<Button
android:id="@+id/controller_test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="controller test"
android:onClick="onClick"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/et_blockly_test"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="input blockly url"
android:layout_toStartOf="@+id/blockly_test"
android:layout_alignParentStart="true"/>
<Button
android:id="@+id/blockly_test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="save"
android:onClick="onClick"
android:layout_toStartOf="@+id/blockly_reset"/>
<Button
android:id="@+id/blockly_reset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="reset"
android:onClick="onClick"
android:layout_alignParentEnd="true"/>
</RelativeLayout>
</LinearLayout>