Browse Source

Merge branch 'develop' of https://github.com/swict/LifePlusAndroid into develop

hyodong.min 7 năm trước cách đây
mục cha
commit
52c69a4a81

+ 0 - 47
app/src/main/java/kr/co/zumo/app/lifeplus/view/model/SignUpModel.java

@@ -1,47 +0,0 @@
-/*
- * COPYRIGHT (c) 2018 All rights reserved by HANWHA LIFE.
- */
-package kr.co.zumo.app.lifeplus.view.model;
-
-/**
- * [클래스 개요]
- * <pre>
- * [클래스 상세 설명 또는 사용 시 주의점]
- * </pre>
- *
- * @author 하세미
- * @version 1.0
- * @history 하세미   [2018-09-11]   [최초 작성]
- * @since 2018-09-11
- */
-public class SignUpModel {
-
-  private String sign_up_first;
-  private int benefit_img_resource;
-  private String benefit_contents;
-
-
-  public String getSign_up_first() {
-    return sign_up_first;
-  }
-
-  public void setSign_up_first(String sign_up_first) {
-    this.sign_up_first = sign_up_first;
-  }
-
-  public int getBenefit_img_resource() {
-    return benefit_img_resource;
-  }
-
-  public void setBenefit_img_resource(int benefit_img_resource) {
-    this.benefit_img_resource = benefit_img_resource;
-  }
-
-  public String getBenefit_contents() {
-    return benefit_contents;
-  }
-
-  public void setBenefit_contents(String benefit_contents) {
-    this.benefit_contents = benefit_contents;
-  }
-}

+ 0 - 41
app/src/main/res/layout/signup_benefit_view.xml

@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<layout
-  xmlns:android="http://schemas.android.com/apk/res/android"
-  android:layout_width="match_parent"
-  android:layout_height="match_parent">
-
-  <data>
-    <import type="kr.co.zumo.app.lifeplus.view.model.SignUpModel"/>
-  </data>
-
-  <LinearLayout
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:orientation="horizontal">
-    <LinearLayout
-      android:layout_width="wrap_content"
-      android:orientation="vertical"
-      android:layout_height="wrap_content">
-      <ImageView
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:src="@mipmap/ic_launcher"/>
-      <TextView
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:textAlignment="center"
-        android:text="text1"/>
-      <TextView
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:textAlignment="center"
-        android:text="text2"/>
-      <TextView
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:textAlignment="center"
-        android:text="text3"/>
-  </LinearLayout>
-  </LinearLayout>
-</layout>

+ 0 - 15
app/src/main/res/layout/signup_text_view.xml

@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
-  xmlns:android="http://schemas.android.com/apk/res/android"
-  android:layout_width="match_parent"
-  android:layout_height="match_parent">
-
-  <TextView
-    android:id="@+id/signup_text_view"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:background="@color/colorPrimary"
-    android:text="text"
-    />
-
-</LinearLayout>