aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/menu_item_checkbox.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/menu_item_checkbox.xml')
-rw-r--r--app/src/main/res/layout/menu_item_checkbox.xml36
1 files changed, 15 insertions, 21 deletions
diff --git a/app/src/main/res/layout/menu_item_checkbox.xml b/app/src/main/res/layout/menu_item_checkbox.xml
index e4c48ebd..baea3bfa 100644
--- a/app/src/main/res/layout/menu_item_checkbox.xml
+++ b/app/src/main/res/layout/menu_item_checkbox.xml
@@ -23,25 +23,19 @@
~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
~ SOFTWARE.
-->
-<layout xmlns:android="http://schemas.android.com/apk/res/android">
- <data>
- <variable name="checkedState" type="net.lacolaco.smileessence.viewmodel.CheckBoxModel.CheckedState" />
- </data>
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?android:attr/activatedBackgroundIndicator"
- android:orientation="vertical">
- <CheckBox
- android:id="@+id/checkBox_menuItem"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
- android:layout_marginTop="16dp"
- android:paddingLeft="10dp"
- android:checked="@{checkedState.checked}"
- android:text="@{checkedState.text}"
- android:textAppearance="?android:attr/textAppearanceMedium" />
- </FrameLayout>
-</layout> \ No newline at end of file
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?android:attr/activatedBackgroundIndicator"
+ android:orientation="vertical">
+
+ <CheckBox
+ android:id="@+id/checkBox_menuItem"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="16dp"
+ android:layout_marginTop="16dp"
+ android:paddingLeft="10dp"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+</FrameLayout> \ No newline at end of file