|
|
@ -65,7 +65,7 @@ |
|
|
|
style="@style/regularStyle" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:text="Ratings: CRISIL AAA/Stable & ICRA AAA/Stable" |
|
|
|
android:text="@string/schemeRating" |
|
|
|
android:textColor="@color/light_text" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintHorizontal_bias="0.0" |
|
|
@ -79,15 +79,16 @@ |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginTop="@dimen/_2sdp" |
|
|
|
android:hint="Select Investment Amount" |
|
|
|
android:hint="@string/investmentAmount" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvFdRating" |
|
|
|
app:layout_constraintVertical_bias="0.02"> |
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputEditText |
|
|
|
android:id="@+id/edtAmount" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="@dimen/margin_45" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:drawableStart="@drawable/svg_rs" |
|
|
|
android:inputType="number" |
|
|
|
android:maxLength="12" /> |
|
|
@ -108,19 +109,26 @@ |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tlDepositAmount" |
|
|
|
app:layout_constraintVertical_bias="0.02" /> |
|
|
|
|
|
|
|
<Spinner |
|
|
|
<com.google.android.material.textfield.TextInputLayout |
|
|
|
android:id="@+id/spInterestPayout" |
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:minHeight="@dimen/margin_50" |
|
|
|
android:background="@drawable/rounded_corner_with_line" |
|
|
|
android:entries="@array/intrest_payout_list" |
|
|
|
android:paddingStart="@dimen/margin_10" |
|
|
|
android:paddingEnd="0dp" |
|
|
|
android:background="@null" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvDepositLabel" |
|
|
|
app:layout_constraintVertical_bias="0.02" /> |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvDepositLabel"> |
|
|
|
|
|
|
|
<AutoCompleteTextView |
|
|
|
android:id="@+id/tvInterestPayout" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:background="@drawable/rounded_corner_with_line" |
|
|
|
android:inputType="none" |
|
|
|
android:hint="@string/select" |
|
|
|
android:labelFor="@+id/spInterestPayout" |
|
|
|
android:text="" /> |
|
|
|
</com.google.android.material.textfield.TextInputLayout> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvInvestmentTenure" |
|
|
@ -136,24 +144,25 @@ |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/spInterestPayout" |
|
|
|
app:layout_constraintVertical_bias="0.02" /> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvInterestTenure" |
|
|
|
style="@style/regularStyle" |
|
|
|
<com.google.android.material.textfield.TextInputLayout |
|
|
|
android:id="@+id/spInterestTenure" |
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="@dimen/margin_45" |
|
|
|
android:background="@drawable/rounded_corner_with_line" |
|
|
|
android:gravity="center_vertical" |
|
|
|
android:hint="@string/tv_select_hint" |
|
|
|
android:paddingStart="@dimen/_5sdp" |
|
|
|
android:paddingEnd="@dimen/margin_15" |
|
|
|
android:text="" |
|
|
|
android:textColor="@color/text_default" |
|
|
|
android:textColorHint="#757575" |
|
|
|
android:textSize="@dimen/text_size_16" |
|
|
|
app:drawableRightCompat="@drawable/ic_arrow_down" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvInvestmentTenure" /> |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvInvestmentTenure"> |
|
|
|
|
|
|
|
<AutoCompleteTextView |
|
|
|
android:id="@+id/tvTenure" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:background="@drawable/rounded_corner_with_line" |
|
|
|
android:inputType="none" |
|
|
|
android:hint="@string/select" |
|
|
|
android:labelFor="@+id/spInterestTenure" |
|
|
|
android:text="" /> |
|
|
|
</com.google.android.material.textfield.TextInputLayout> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvSwitchLabel" |
|
|
@ -166,7 +175,7 @@ |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintHorizontal_bias="0.0" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvInterestTenure" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/spInterestTenure" |
|
|
|
app:layout_constraintVertical_bias="0.018" /> |
|
|
|
|
|
|
|
<androidx.appcompat.widget.SwitchCompat |
|
|
@ -181,49 +190,46 @@ |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintHorizontal_bias="0.0" |
|
|
|
app:layout_constraintStart_toEndOf="@+id/tvSwitchLabel" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvInterestTenure" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/spInterestTenure" |
|
|
|
app:layout_constraintVertical_bias="0.018" /> |
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvMaturityInstruction" |
|
|
|
style="@style/regularStyle" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:background="@color/grey_bg" |
|
|
|
android:padding="@dimen/_2sdp" |
|
|
|
android:text="@string/maturity_instructions" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
android:textSize="@dimen/text_size_12"/> |
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout |
|
|
|
android:id="@+id/constraintLayoutThree" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="match_parent"> |
|
|
|
|
|
|
|
<TextView |
|
|
|
android:id="@+id/tvMaturityInstruction" |
|
|
|
style="@style/regularStyle" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:background="@color/grey_bg" |
|
|
|
android:padding="@dimen/_2sdp" |
|
|
|
android:text="@string/maturity_instructions" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
android:textSize="@dimen/text_size_12" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
|
app:layout_constraintHorizontal_bias="0.0" |
|
|
|
app:layout_constraintStart_toStartOf="parent" |
|
|
|
app:layout_constraintTop_toTopOf="parent" |
|
|
|
app:layout_constraintVertical_bias="0.02" /> |
|
|
|
android:layout_height="match_parent" |
|
|
|
android:padding="@dimen/margin_10"> |
|
|
|
|
|
|
|
<RadioGroup |
|
|
|
android:id="@+id/radioGroup" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:paddingStart="@dimen/_2sdp" |
|
|
|
android:paddingEnd="@dimen/_2sdp" |
|
|
|
app:layout_constraintTop_toBottomOf="@+id/tvMaturityInstruction"> |
|
|
|
app:layout_constraintTop_toTopOf="parent"> |
|
|
|
|
|
|
|
<RadioButton |
|
|
|
android:id="@+id/rbAutoCredit" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:checked="true" |
|
|
|
android:buttonTint="@color/black" |
|
|
|
android:text="@string/additional_detail_one" |
|
|
|
android:textSize="@dimen/text_size_12" /> |
|
|
|
|
|
|
|
<RadioButton |
|
|
|
android:id="@+id/rbAutoRenew" |
|
|
|
android:buttonTint="@color/black" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:text="@string/additional_detail_two" |
|
|
@ -233,6 +239,7 @@ |
|
|
|
android:id="@+id/rbAutoBoth" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:buttonTint="@color/black" |
|
|
|
android:text="@string/additional_detail_three" |
|
|
|
android:textSize="@dimen/text_size_12" /> |
|
|
|
|
|
|
@ -244,8 +251,7 @@ |
|
|
|
style="@style/semiBoldStyle" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="@dimen/margin_10" |
|
|
|
android:layout_marginTop="@dimen/margin_15" |
|
|
|
android:layout_marginTop="@dimen/margin_10" |
|
|
|
android:text="@string/tax_deducted_at_source_tds" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
@ -260,9 +266,8 @@ |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:drawablePadding="@dimen/margin_10" |
|
|
|
android:padding="@dimen/margin_10" |
|
|
|
android:text="Please ensure to upload the Form 15 G / H, when you receive a mail from the |
|
|
|
Company for the same" |
|
|
|
android:padding="@dimen/_1sdp" |
|
|
|
android:text="@string/TDSForm" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
android:textSize="@dimen/text_size_12" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
@ -275,7 +280,8 @@ Company for the same" |
|
|
|
android:id="@+id/rbDeductTax" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="@dimen/_2sdp" |
|
|
|
android:checked="true" |
|
|
|
android:buttonTint="@color/black" |
|
|
|
android:orientation="horizontal" |
|
|
|
android:text="@string/deduct_tds" |
|
|
|
android:textSize="@dimen/text_size_12" |
|
|
@ -285,13 +291,10 @@ Company for the same" |
|
|
|
<TextView |
|
|
|
android:id="@+id/tvSubmitLabel" |
|
|
|
style="@style/regularStyle" |
|
|
|
android:padding="@dimen/_1sdp" |
|
|
|
android:layout_width="match_parent" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:paddingLeft="@dimen/margin_10" |
|
|
|
android:paddingRight="@dimen/margin_10" |
|
|
|
android:paddingBottom="@dimen/margin_20" |
|
|
|
android:text="In case you are eligible for non deduction of TDS then please submit |
|
|
|
15G/H form to Bajaj or Nivesh team" |
|
|
|
android:text="@string/nonDeductTDS" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
android:textSize="@dimen/text_size_12" |
|
|
|
app:layout_constraintEnd_toEndOf="parent" |
|
|
@ -340,7 +343,7 @@ Company for the same" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:drawablePadding="@dimen/margin_10" |
|
|
|
android:text="Non- Cumulative ROI:" |
|
|
|
android:text="@string/nonCumulativeROI" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
android:textSize="@dimen/text_size_14" /> |
|
|
|
|
|
|
@ -350,7 +353,7 @@ Company for the same" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="@dimen/margin_2" |
|
|
|
android:text="7.5 %" |
|
|
|
android:text="" |
|
|
|
android:textColor="@color/text_color_blue" |
|
|
|
android:textSize="@dimen/text_size_14" /> |
|
|
|
|
|
|
@ -367,7 +370,7 @@ Company for the same" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:drawablePadding="@dimen/margin_10" |
|
|
|
android:text="Regular Interest Payment:" |
|
|
|
android:text="@string/regularInterestPayment" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
android:textSize="@dimen/text_size_14" /> |
|
|
|
|
|
|
@ -377,7 +380,7 @@ Company for the same" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="@dimen/margin_2" |
|
|
|
android:text="Quarterly" |
|
|
|
android:text="" |
|
|
|
android:textColor="@color/text_color_blue" |
|
|
|
android:textSize="@dimen/text_size_14" /> |
|
|
|
|
|
|
@ -394,7 +397,7 @@ Company for the same" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:drawablePadding="@dimen/margin_10" |
|
|
|
android:text="Maturity Amount:" |
|
|
|
android:text="@string/maturityAmount" |
|
|
|
android:textColor="@color/text_color_dark" |
|
|
|
android:textSize="@dimen/text_size_14" /> |
|
|
|
|
|
|
@ -404,7 +407,7 @@ Company for the same" |
|
|
|
android:layout_width="wrap_content" |
|
|
|
android:layout_height="wrap_content" |
|
|
|
android:layout_marginStart="@dimen/margin_2" |
|
|
|
android:text="5XXXXXX" |
|
|
|
android:text="" |
|
|
|
android:textColor="@color/text_color_blue" |
|
|
|
android:textSize="@dimen/text_size_14" /> |
|
|
|
|
|
|
|