如何在 EditText 中放置单位?

How to put units in EditText?

我想将 unit text (like lbs, kg etc..) 放入 Edittext

我这里简单找的时候,他们建议用文本视图或者图片来解决。

(Add unit symbol at the end of the EditText)

有没有办法只使用EditText?

我想把固定在EditText里面的单元文本。

即使我输入这个单位也不会消失,但是可以通过 popup menu.

改变单位

您可以使用 This 库来显示 EditText 的后缀和前缀,如下所示:

<com.tobiasschuerg.prefixsuffix.PrefixSuffixEditText
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:inputType="numberDecimal"
      android:text="24"
      app:prefix="Age: "
      app:suffix=" years"
      android:textColorHint="@color/colorPrimary"/>