2017-06-05 15 views
0

私は画面上に貼り付けられたレイアウト、特にダッシュを1桁のテキストフィールドのように扱うのに苦労しています。次の数字は次のテキストフィールドにジャンプする必要があるコードなのでそれは私が使用しなければならないものです。 これは、ユーザーが入力しなければならないコード(4桁)を受信するが、フィールドごとに1つの数字が入力されたときです。 enter image description hereAndroidの電話コード

画像は自明ですと思います。ありがとうございました。

+1

私はこのリンクがあなたを助けることができると思うhttp://lomza.totem-soft.com/pin-input-view-in-android/ – Meenal

+0

有望なのはしばらくのうちに更新されます。 TKS! – JackyBoi

+0

@Meenal tks buddy!それはうまくいった! – JackyBoi

答えて

1

&を簡単に実装するには、このようにLibraryを必要に応じてカスタマイズできます。

0

下記のコードをXMLレイアウトファイルに貼り付けてください。

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_test" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 



<LinearLayout 
    android:layout_width="match_parent" 
    android:orientation="vertical" 
    android:layout_height="match_parent"> 


    <TextView 
     android:layout_width="wrap_content" 
     android:text="ENTER CODE" 
     android:textSize="18sp" 
     android:textColor="@android:color/holo_blue_dark" 
     android:layout_gravity="center" 
     android:layout_height="wrap_content" /> 


    <LinearLayout 
     android:layout_width="match_parent" 
     android:orientation="horizontal" 
     android:layout_margin="10dp" 
     android:layout_gravity="center" 
     android:layout_height="wrap_content"> 


     <EditText 
      android:layout_width="0dp" 
      android:layout_weight="1" 
      android:imeOptions="actionNext" 
      android:maxLength="1" 
      android:inputType="number" 
      android:layout_height="wrap_content" /> 


     <EditText 
      android:layout_width="0dp" 
      android:layout_weight="1" 
      android:imeOptions="actionNext" 
      android:maxLength="1" 
      android:inputType="number" 
      android:layout_height="wrap_content" /> 

     <EditText 
      android:layout_width="0dp" 
      android:layout_weight="1" 
      android:imeOptions="actionNext" 
      android:maxLength="1" 
      android:inputType="number" 
      android:layout_height="wrap_content" /> 

     <EditText 
      android:layout_width="0dp" 
      android:layout_weight="1" 
      android:imeOptions="actionDone" 
      android:maxLength="1" 
      android:inputType="number" 
      android:layout_height="wrap_content" /> 


    </LinearLayout> 

    <TextView 
     android:layout_width="wrap_content" 
     android:text="00:32" 
     android:layout_gravity="center" 
     android:layout_marginTop="10dp" 
     android:layout_height="wrap_content" /> 


    <TextView 
     android:layout_width="wrap_content" 
     android:text="Resend Code" 
     android:textSize="15sp" 
     android:textColor="@android:color/holo_blue_dark" 
     android:layout_gravity="center" 
     android:layout_marginTop="10dp" 
     android:layout_height="wrap_content" /> 


    <Button 
     android:layout_width="match_parent" 
     android:text="verify" 
     android:layout_marginTop="10dp" 
     android:background="@android:color/holo_blue_dark" 
     android:layout_height="wrap_content" /> 

</LinearLayout> 

セットトリック を行なったし、あなたの条件に応じて余裕を与えてくださいのEditTextでのMaxLength = 1。

関連する問題