samuelchassot/SDP-SwissTeam

View on GitHub
app/src/main/res/layout/capability_layout.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:padding="8dp"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="100"
        android:orientation="horizontal">

        <TextView
            android:id="@+id/textview_capabilitylayout_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="100"
            android:gravity="left|center_vertical" />

        <CheckBox
            android:id="@+id/checkbox_capabilitylayout_check"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1" />
    </LinearLayout>

    <EditText
        android:id="@+id/edittext_capabilitylayout_keywords"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/capability_layout_hintkeywords"
        android:layout_weight="100"
        android:ems="10"
        android:inputType="text" />

</LinearLayout>