[[activity_main.xml]]
@DIV
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:bind="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">
<data>
<variable
@c:red(name="user")
type="sample.lightbox.androidbind1017.Syain"/>
</data>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/scrollView">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin">
<TextView
android:layout_width="wrap_content"
android:layout_height="1dp"
android:id="@+id/topText"
android:focusable="true"
android:focusableInTouchMode="true"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/action">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="SET"
android:id="@+id/button"
android:layout_alignParentEnd="true"
android:layout_weight="1"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="GET"
android:layout_weight="1"
android:id="@+id/button3"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="JS CALL"
android:id="@+id/button2"
android:layout_weight="1"/>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/dataBody">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{user.scode}"
android:inputType="number"
android:id="@+id/editText"
android:background="@drawable/border"
android:padding="5dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@{user.kj}"
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textView"
android:layout_margin="4dp"
android:focusable="true"
android:focusableInTouchMode="true"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@{user.furi}"
android:id="@+id/textView2"
android:layout_margin="4dp"/>
</LinearLayout>
@C:red(<include
layout="@layout/ex_contents"
android:id="@+id/ex"
bind:user="@{user}"/>)
<sample.lightbox.androidbind1017.DataWebView
android:layout_width="match_parent"
android:layout_height="300dp"
android:id="@+id/webView"
android:visibility="invisible"/>
</LinearLayout>
</ScrollView>
</layout>
@END
@SHOW
xmlns:bind="http://schemas.android.com/apk/res-auto" は無くても動作しましたが、Android Studio に『必要無い』といわれたのは第三画面だけでした
ネームスペースはルートの要素にのみ必要です
tools:context=".MainActivity" は画面デザイン時に必要のようです
@END
[[入力フィールドの背景用罫線の定義]]
@DIV
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:color="@android:color/black"
android:width="1dp" />
<corners android:radius="6dp" />
</shape>
@END |