Просмотр исходного кода

[회원가입][Bug] 불필요 xml 제거

hyodong.min 7 лет назад
Родитель
Сommit
af253eec31

+ 0 - 62
app/src/main/java/kr/co/zumo/app/lifeplus/view/fragment/signup/SignUpBenefitCustomView.java

@@ -1,62 +0,0 @@
-package kr.co.zumo.app.lifeplus.view.fragment.signup;
-
-import android.content.Context;
-import android.support.annotation.Nullable;
-import android.util.AttributeSet;
-import android.util.Log;
-import android.view.LayoutInflater;
-import android.view.View;
-import android.widget.ImageView;
-import android.widget.LinearLayout;
-import android.widget.TextView;
-
-import kr.co.zumo.app.R;
-
-public class SignUpBenefitCustomView extends LinearLayout {
-
-  LinearLayout benefitLayout;
-  ImageView benefitImage;
-  TextView benefitTitle;
-  TextView benefitContents;
-  TextView benefitCategory;
-
-
-  public SignUpBenefitCustomView(Context context) {
-    super(context);
-    inflateViews(context);
-
-  }
-
-  public SignUpBenefitCustomView(Context context, @Nullable AttributeSet attrs) {
-    super(context, attrs);
-    inflateViews(context);
-  }
-
-
-  private void inflateViews(Context context) {
-    Log.e("APP#  SignUpBenefitCustomView | inflateViews", "|" + context.toString());
-    LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
-    View view = inflater.inflate(R.layout.sign_up_benefit_view, this);
-
-    benefitLayout = (LinearLayout) findViewById(R.id.benefit_layout);
-    benefitImage = (ImageView) findViewById(R.id.benefit_image);
-    benefitTitle = (TextView) findViewById(R.id.benefit_title);
-    benefitContents = (TextView) findViewById(R.id.benefit_contents);
-    benefitCategory = (TextView) findViewById(R.id.benefit_category);
-  }
-
-
-  private void getAttrs(AttributeSet attrs) {
-    //TypedArray typedArray = getContext().obtainStyledAttributes(attrs , R.styleable.BenefitView);
-  }
-
-
-  public void setSignUpBenefit(int imageResource, String title, String contents, String category) {
-
-    benefitImage.setImageResource(imageResource);
-    benefitTitle.setText(title);
-    benefitContents.setText(contents);
-    benefitCategory.setText(category);
-
-  }
-}

+ 0 - 37
app/src/main/res/layout/sign_up_benefit_list.xml

@@ -1,37 +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="wrap_content">
-
-  <LinearLayout
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:orientation="horizontal"
-    android:weightSum="3"
-    >
-    <kr.co.zumo.app.lifeplus.view.fragment.signup.SignUpBenefitCustomView
-      android:id="@+id/custom_view1"
-      android:layout_width="0dp"
-      android:layout_height="wrap_content"
-      android:layout_weight="1"
-      >
-    </kr.co.zumo.app.lifeplus.view.fragment.signup.SignUpBenefitCustomView>
-
-    <kr.co.zumo.app.lifeplus.view.fragment.signup.SignUpBenefitCustomView
-      android:id="@+id/custom_view2"
-      android:layout_width="0dp"
-      android:layout_height="wrap_content"
-      android:layout_weight="1"
-      >
-    </kr.co.zumo.app.lifeplus.view.fragment.signup.SignUpBenefitCustomView>
-
-    <kr.co.zumo.app.lifeplus.view.fragment.signup.SignUpBenefitCustomView
-      android:id="@+id/custom_view3"
-      android:layout_width="0dp"
-      android:layout_height="wrap_content"
-      android:layout_weight="1"
-      >
-    </kr.co.zumo.app.lifeplus.view.fragment.signup.SignUpBenefitCustomView>
-  </LinearLayout>
-</LinearLayout>

+ 0 - 38
app/src/main/res/layout/sign_up_benefit_view.xml

@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
-  xmlns:android="http://schemas.android.com/apk/res/android"
-  android:id="@+id/benefit_layout"
-  android:layout_width="match_parent"
-  android:orientation="vertical"
-  android:layout_height="wrap_content">
-      <ImageView
-        android:id="@+id/benefit_image"
-        android:layout_width="wrap_content"
-        android:layout_height="100dp"
-        android:layout_gravity="center"
-        android:src="@mipmap/ic_launcher"/>
-
-      <TextView
-        android:id="@+id/benefit_title"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:text="text1"
-        android:textAlignment="center"/>
-
-      <TextView
-        android:id="@+id/benefit_contents"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:text="text2"
-        android:textAlignment="center"/>
-
-      <TextView
-        android:id="@+id/benefit_category"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_gravity="center"
-        android:text="text3"
-        android:textAlignment="center"/>
-</LinearLayout>

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

@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
-  xmlns:android="http://schemas.android.com/apk/res/android"
-  xmlns:tools="http://schemas.android.com/tools"
-  android:layout_width="wrap_content"
-  android:layout_height="wrap_content">
-
-  <Button
-    android:id="@+id/sign_up_button"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:textAllCaps="false"
-    tools:text="button"
-    />
-</LinearLayout>

+ 0 - 37
app/src/main/res/layout/sign_up_coin.xml

@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout
-  xmlns:android="http://schemas.android.com/apk/res/android"
-  xmlns:app="http://schemas.android.com/apk/res-auto"
-  xmlns:tools="http://schemas.android.com/tools"
-  android:layout_width="match_parent"
-  android:layout_height="match_parent"
-  tools:layout_editor_absoluteY="81dp">
-
-  <ImageView
-    android:id="@+id/image_view_coupon"
-    android:layout_width="300dp"
-    android:layout_height="100dp"
-    android:layout_alignParentStart="true"
-    android:layout_alignParentTop="true"
-    android:background="@drawable/coupon_image"
-    android:layout_marginRight="20dp"
-    android:layout_marginLeft="20dp"
-    android:layout_marginTop="20dp"
-    android:layout_marginBottom="20dp"
-    />
-
-  <TextView
-    android:id="@+id/text_view_coupon"
-    android:layout_width="78dp"
-    android:layout_height="wrap_content"
-    android:layout_alignBottom="@id/image_view_coupon"
-    android:layout_alignLeft="@id/image_view_coupon"
-    android:layout_alignRight="@id/image_view_coupon"
-    android:layout_alignTop="@id/image_view_coupon"
-    android:gravity="center"
-    android:layout_weight="1"
-    android:textAlignment="center"
-    android:textSize="18dp"/>
-
-
-</RelativeLayout>

+ 0 - 32
app/src/main/res/layout/sign_up_divider.xml

@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
-  xmlns:android="http://schemas.android.com/apk/res/android"
-  xmlns:tools="http://schemas.android.com/tools"
-  android:layout_width="match_parent"
-  android:layout_height="wrap_content"
-  android:gravity="center"
-  android:orientation="horizontal">
-
-  <View
-    android:layout_width="0dp"
-    android:layout_height="2dp"
-    android:layout_weight="1"
-    android:background="@color/darkGrey"/>
-
-  <TextView
-    android:id="@+id/divider_text"
-    android:layout_width="wrap_content"
-    android:layout_height="wrap_content"
-    android:layout_marginEnd="10dp"
-    android:layout_marginStart="10dp"
-    android:textAlignment="center"
-    tools:text="texsdafasdfasdfasdfasdft"
-    />
-
-  <View
-    android:layout_width="0dp"
-    android:layout_height="2dp"
-    android:layout_weight="1"
-    android:background="@color/darkGrey"/>
-
-</LinearLayout>

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

@@ -1,41 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout
-  xmlns:android="http://schemas.android.com/apk/res/android"
-  xmlns:tools="http://schemas.android.com/tools"
-  android:layout_width="wrap_content"
-  android:layout_height="wrap_content">
-
-  <LinearLayout
-    android:orientation="vertical"
-    android:layout_margin="20dp"
-    android:background="@color/darkGrey"
-    android:maxWidth="250dp"
-    android:minHeight="150dp"
-    android:layout_width="200dp"
-    android:layout_height="wrap_content">
-
-  <TextView
-    android:layout_marginRight="10dp"
-    android:layout_marginLeft="10dp"
-    android:id="@+id/title_text"
-    android:layout_width="150dp"
-    android:layout_height="wrap_content"
-    tools:text="text"/>
-
-  <View
-    android:layout_marginRight="10dp"
-    android:layout_marginLeft="10dp"
-    android:layout_width="match_parent"
-    android:layout_height="1dp"
-    android:background="@color/black"/>
-
-    <TextView
-      android:layout_marginRight="10dp"
-      android:layout_marginLeft="10dp"
-      android:id="@+id/content_text"
-      android:layout_width="150dp"
-      android:layout_height="wrap_content"
-      tools:text="text"/>
-
-  </LinearLayout>
-</LinearLayout>

+ 0 - 476
app/src/main/res/layout/sign_up_phone_identify_dialog.xml

@@ -1,476 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
-            xmlns:tools="http://schemas.android.com/tools"
-            android:id="@+id/scroll_view_identify"
-            android:layout_width="match_parent"
-            android:layout_height="match_parent"
-            android:orientation="vertical">
-
-  <LinearLayout
-    android:layout_width="match_parent"
-    android:layout_height="wrap_content"
-    android:orientation="vertical">
-
-    <LinearLayout
-      android:id="@+id/linear_layout_identify"
-      android:layout_width="match_parent"
-      android:layout_height="match_parent"
-      android:background="@color/white"
-      android:clickable="true"
-      android:focusable="true"
-      android:focusableInTouchMode="true"
-      android:orientation="vertical">
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginTop="5pt"
-        android:orientation="vertical">
-
-        <TextView
-          android:layout_width="match_parent"
-          android:layout_height="wrap_content"
-          android:layout_margin="5pt"
-          android:text="@string/phone_identify_name"
-          android:textSize="20dp"/>
-
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal">
-
-
-        <kr.co.zumo.app.lifeplus.view.custom.ClearEditText
-          android:id="@+id/edit_text_name"
-          android:layout_width="165dp"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:layout_marginRight="-15pt"
-          android:layout_weight="2"
-          android:background="@drawable/input_border"
-          android:baselineAligned="false"
-          android:hint="@string/phone_identify_name_hint"
-          android:inputType="textPersonName"
-          android:padding="3pt"/>
-
-        <RadioGroup
-          android:id="@+id/radio_group_nationality"
-          android:layout_width="wrap_content"
-          android:layout_height="40dp"
-          android:layout_marginLeft="50dp"
-          android:layout_marginRight="50dp"
-          android:layout_weight="2"
-          android:background="@drawable/swicth_out_line"
-          android:checkedButton="@+id/offer"
-          android:orientation="horizontal">
-
-          <RadioButton
-            android:id="@+id/radio_button_local"
-            android:layout_width="92dp"
-            android:layout_height="match_parent"
-            android:layout_marginBottom="1dp"
-            android:layout_marginLeft="1dp"
-            android:layout_marginTop="1dp"
-            android:layout_weight="1"
-            android:background="@drawable/toggle_widget_background"
-            android:button="@null"
-            android:checked="true"
-            android:gravity="center"
-            android:padding="3pt"
-            android:text="@string/phone_identify_local"/>
-
-          <RadioButton
-            android:id="@+id/radio_button_foreign"
-            android:layout_width="85dp"
-            android:layout_height="40dp"
-            android:layout_marginBottom="1dp"
-            android:layout_marginRight="1dp"
-            android:layout_marginTop="1dp"
-            android:layout_weight="1"
-            android:background="@drawable/toggle_widget_background"
-            android:button="@null"
-            android:gravity="center"
-            android:padding="3pt"
-            android:text="@string/phone_identify_foreign"/>
-        </RadioGroup>
-
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="5pt"
-        android:orientation="vertical"
-
-        >
-
-        <TextView
-          android:id="@+id/text_view_name_validation"
-          android:layout_width="match_parent"
-          android:layout_height="wrap_content"
-          android:textColor="@color/red"/>
-
-      </LinearLayout>
-
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:orientation="vertical">
-
-        <TextView
-          android:layout_width="match_parent"
-          android:layout_height="wrap_content"
-          android:layout_margin="5pt"
-          android:text="@string/phone_identify_birth"
-          android:textSize="20dp"/>
-
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal">
-
-
-        <kr.co.zumo.app.lifeplus.view.custom.ClearEditText
-          android:id="@+id/edit_text_birth_date"
-          android:layout_width="165dp"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:layout_marginRight="-15pt"
-          android:layout_weight="2"
-          android:background="@drawable/input_border"
-          android:hint="@string/phone_identify_birth_hint"
-          android:inputType="number"
-          android:maxLength="8"
-          android:padding="3pt"/>
-
-        <RadioGroup
-          android:id="@+id/radio_group_gender"
-          android:layout_width="wrap_content"
-          android:layout_height="40dp"
-          android:layout_marginLeft="50dp"
-          android:layout_marginRight="50dp"
-          android:layout_weight="2"
-          android:background="@drawable/swicth_out_line"
-          android:checkedButton="@+id/offer"
-          android:orientation="horizontal">
-
-          <RadioButton
-            android:id="@+id/radio_button_male"
-            android:layout_width="92dp"
-            android:layout_height="match_parent"
-            android:layout_marginBottom="1dp"
-            android:layout_marginLeft="1dp"
-            android:layout_marginTop="1dp"
-            android:layout_weight="1"
-            android:background="@drawable/toggle_widget_background"
-            android:button="@null"
-            android:checked="true"
-            android:gravity="center"
-            android:padding="3pt"
-            android:text="@string/phone_identify_male"/>
-
-          <RadioButton
-            android:id="@+id/radio_button_female"
-            android:layout_width="85dp"
-            android:layout_height="40dp"
-            android:layout_marginBottom="1dp"
-            android:layout_marginRight="1dp"
-            android:layout_marginTop="1dp"
-            android:layout_weight="1"
-            android:background="@drawable/toggle_widget_background"
-            android:button="@null"
-            android:gravity="center"
-            android:padding="3pt"
-            android:text="@string/phone_identify_female"/>
-        </RadioGroup>
-
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="5pt"
-        android:orientation="vertical"
-
-        >
-
-        <TextView
-          android:id="@+id/text_view_birth_validation"
-          android:layout_width="match_parent"
-          android:layout_height="wrap_content"
-          android:textColor="@color/red"/>
-
-      </LinearLayout>
-
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginBottom="10pt"
-        android:orientation="vertical">
-
-        <CheckBox
-          android:id="@+id/checkbox_all_agree"
-          android:layout_width="match_parent"
-          android:layout_height="wrap_content"
-          android:layout_marginBottom="3pt"
-          android:layout_marginLeft="5pt"
-          android:text="@string/phone_identify_all_agree"
-          android:textIsSelectable="false"
-          android:textSize="20dp"/>
-
-        <View
-          android:layout_width="match_parent"
-          android:layout_height="2dp"
-          android:layout_centerInParent="true"
-          android:layout_marginLeft="5pt"
-          android:layout_marginRight="5pt"
-          android:background="@color/darkGrey"/>
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal"
-        android:weightSum="5">
-
-        <CheckBox
-          android:id="@+id/checkbox_agree1"
-          android:layout_width="0dp"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:layout_weight="4"
-          android:text="@string/phone_identify_agree1"
-          android:textSize="20dp"/>
-
-        <TextView
-          android:id="@+id/button_identify_agree1"
-          android:layout_width="0dp"
-          android:layout_height="match_parent"
-          android:layout_marginLeft="5pt"
-          android:layout_marginTop="3pt"
-          android:layout_weight="1"
-          android:text=">"
-          android:textAlignment="center"
-          android:textSize="15dp"/>
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal"
-        android:weightSum="5">
-
-        <CheckBox
-          android:id="@+id/checkbox_agree2"
-          android:layout_width="0dp"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:layout_weight="4"
-          android:text="@string/phone_identify_agree2"
-          android:textSize="20dp"/>
-
-        <TextView
-          android:id="@+id/button_identify_agree2"
-          android:layout_width="0dp"
-          android:layout_height="match_parent"
-          android:layout_marginLeft="5pt"
-          android:layout_marginTop="3pt"
-          android:layout_weight="1"
-          android:text=">"
-          android:textAlignment="center"
-          android:textSize="15dp"/>
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal"
-        android:weightSum="5">
-
-        <CheckBox
-          android:id="@+id/checkbox_agree3"
-          android:layout_width="0dp"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:layout_weight="4"
-          android:text="@string/phone_identify_agree3"
-          android:textSize="20dp"/>
-
-        <TextView
-          android:id="@+id/button_identify_agree3"
-          android:layout_width="0dp"
-          android:layout_height="match_parent"
-          android:layout_marginLeft="5pt"
-          android:layout_marginTop="3pt"
-          android:layout_weight="1"
-          android:text=">"
-          android:textAlignment="center"
-          android:textSize="15dp"/>
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:orientation="horizontal"
-        android:weightSum="5">
-
-        <CheckBox
-          android:id="@+id/checkbox_agree4"
-          android:layout_width="0dp"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:layout_weight="4"
-          android:text="@string/phone_identify_agree4"
-          android:textSize="20dp"/>
-
-        <TextView
-          android:id="@+id/button_identify_agree4"
-          android:layout_width="0dp"
-          android:layout_height="match_parent"
-          android:layout_marginLeft="5pt"
-          android:layout_marginTop="3pt"
-          android:layout_weight="1"
-          android:text=">"
-          android:textAlignment="center"
-          android:textSize="15dp"/>
-      </LinearLayout>
-
-      <LinearLayout
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginTop="10dp"
-        android:orientation="horizontal"
-        android:weightSum="4">
-
-
-        <Spinner
-          android:id="@+id/spinner_mobile_company"
-          android:layout_width="0dp"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:layout_marginRight="5pt"
-          android:layout_weight="2"
-          android:entries="@array/mobile_companies"/>
-
-        <Spinner
-          android:id="@+id/spinner_first_phone_number"
-          android:layout_width="0dp"
-          android:layout_height="wrap_content"
-          android:layout_marginRight="5pt"
-          android:layout_weight="2"
-          android:entries="@array/phone_numbers"/>
-
-      </LinearLayout>
-
-
-      <kr.co.zumo.app.lifeplus.view.custom.ClearEditText
-        android:id="@+id/edit_text_phone_number"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="5pt"
-        android:layout_marginRight="5pt"
-        android:hint="@string/phone_identify_phone_hint"
-        android:inputType="number"
-        android:maxLength="8"/>
-
-      <TextView
-        android:id="@+id/text_view_phone_number_validation"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginLeft="5pt"
-        android:textColor="@color/red"
-        />
-
-
-      <Button
-        android:id="@+id/button_identify_number_send"
-        android:layout_width="match_parent"
-        android:layout_height="wrap_content"
-        android:layout_marginBottom="5pt"
-        android:layout_marginLeft="5pt"
-        android:layout_marginRight="5pt"
-        android:text="@string/phone_identify_submit"/>
-
-    </LinearLayout>
-
-    <LinearLayout
-      android:layout_width="match_parent"
-      android:layout_height="wrap_content"
-      android:orientation="horizontal"
-      android:weightSum="4">
-
-
-      <LinearLayout
-        android:layout_width="0dp"
-        android:layout_height="wrap_content"
-        android:layout_weight="3"
-        android:orientation="vertical">
-
-        <kr.co.zumo.app.lifeplus.view.custom.ClearEditText
-          android:id="@+id/edit_text_authorized_number"
-          android:layout_width="match_parent"
-          android:layout_height="wrap_content"
-          android:layout_margin="5pt"
-          android:background="@drawable/input_border"
-          android:hint="@string/phone_identify_six_characters"
-          android:inputType="number"
-          android:maxLength="6"
-          android:padding="3pt"/>
-
-        <TextView
-          android:id="@+id/text_authorized_number_validation"
-          android:layout_width="match_parent"
-          android:layout_height="wrap_content"
-          android:layout_marginLeft="5pt"
-          android:textColor="@color/red"
-          />
-      </LinearLayout>
-
-      <Button
-        android:id="@+id/button_phone_identify_confirm"
-        android:layout_width="0dp"
-        android:layout_height="60dp"
-        android:layout_marginBottom="5pt"
-        android:layout_marginRight="5pt"
-        android:layout_marginTop="5pt"
-        android:layout_weight="1"
-        android:text="@string/phone_identify_confirm"/>
-
-    </LinearLayout>
-
-    <LinearLayout
-      android:id="@+id/phone_identify_layout"
-      android:layout_width="match_parent"
-      android:layout_height="wrap_content"
-      android:isScrollContainer="true"
-      android:orientation="horizontal"
-      android:visibility="gone"
-      android:weightSum="5"
-      tools:visibility="visible">
-
-      <TextView
-        android:id="@+id/text_view_phone_identify_time"
-        android:layout_width="0dp"
-        android:layout_height="wrap_content"
-        android:layout_margin="5pt"
-        android:layout_weight="3"
-        android:padding="3pt"
-        android:text="@string/phone_identify_time"/>
-
-      <Button
-        android:id="@+id/button_phone_identify_time_expansion"
-        android:layout_width="0dp"
-        android:layout_height="wrap_content"
-        android:layout_weight="2"
-        android:text="@string/phone_identify_time_delay"/>
-
-    </LinearLayout>
-  </LinearLayout>
-</ScrollView>