为了账号安全,请及时绑定邮箱和手机立即绑定

在编辑文本中放置 $ 但不显示在数据库中

在编辑文本中放置 $ 但不显示在数据库中

qq_笑_17 2021-12-01 19:40:05
达到类似结果的最佳方法是什么?我对 android 开发/java 等很陌生,所以我要解决的第一部分是 $ 和每小时提示,它保留在编辑文本输入的右侧。然后我将处理布尔值是或否,它允许有 2 个具有最小速率和最大速率的编辑文本框,它们将能够输入到数据库中。(如果您对此有任何提示或解决方案,将不胜感激)例子我的编码尝试。    <?xml version="1.0" encoding="utf-8"?><android.support.constraint.ConstraintLayout 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:context=".MechanicMore.MechanicHourlyRateActivity">    <TextView        android:id="@+id/HourlyText"        android:layout_width="359dp"        android:layout_height="28dp"        android:layout_marginEnd="25dp"        android:text="What is your hourly Rate?"        android:textColor="@android:color/black"        android:textSize="18sp"        android:textStyle="bold"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toTopOf="parent" />    <android.support.design.widget.TextInputLayout        android:id="@+id/textInputLayout2"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_marginTop="25dp"        android:layout_marginBottom="356dp"        android:hint="Per Hour"        app:layout_constraintBottom_toBottomOf="parent"        app:layout_constraintEnd_toEndOf="parent"        app:layout_constraintStart_toStartOf="parent"        app:layout_constraintTop_toBottomOf="@+id/HourlyText">
查看完整描述

1 回答

?
翻翻过去那场雪

TA贡献2065条经验 获得超14个赞

你可以试试这个...


<RelativeLayout

    android:layout_width="200dp"

    android:layout_height="wrap_content"

    android:layout_gravity="center_vertical"

    android:layout_marginStart="10dp"

    android:layout_marginEnd="10dp">


    <android.support.design.widget.TextInputEditText

        android:id="@+id/editText"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:layout_marginStart="10dp"

        android:layout_marginEnd="10dp"

        android:layout_toStartOf="@+id/rate"

        android:layout_toEndOf="@+id/dollarSign"

        android:background="#ffffff"

        android:gravity="center"

        android:text="@string/_25"

        android:textColor="#000000"

        android:textSize="18sp" />


    <TextView

        android:id="@+id/dollarSign"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentStart="true"

        android:layout_marginStart="5dp"

        android:text="@string/dollar"

        android:textColor="#000000"

        android:textSize="18sp" />


    <TextView

        android:id="@+id/rate"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_alignParentEnd="true"

        android:paddingStart="0dp"

        android:paddingEnd="5dp"

        android:text="@string/per_hour"

        android:textColor="@color/colorBlack"

        android:textSize="18sp" />


    <View

        android:layout_width="match_parent"

        android:layout_height="2dp"

        android:layout_below="@id/rate"

        android:layout_marginTop="5dp"

        android:background="#000000" />


</RelativeLayout>


查看完整回答
反对 回复 2021-12-01
  • 1 回答
  • 0 关注
  • 160 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信