-5

2 つの編集テキストがあります。1 つ目はメール、2 つ目はパスワード フィールドです。
両方のフィールドに入力せずにログイン ボタンをクリックすると、両方のフィールドのヒントの色と下線が赤色に変わり、フォーカスされていない状態になります。
ランディング ページでフォーカスされていない状態の場合、色は青色である必要があります。ここに画像の説明を入力し、フォーカス されていない状態でフィールドに入力せずにログインをクリックします。画像の説明をここに入力します

これが私の要件です。
このシナリオを実現するために、考えられるすべての方法を試しました。
しかし、集中状態と非集中状態を制御することはできません。
この問題を解決するために私を導いてください。

<style name="MyMaterialTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar"> <item name="windowNoTitle">true</item> <item name="windowActionBar">false</item> <item name="colorPrimary">@color/colorPrimary</item> <item name="colorPrimaryDark">@color/colorPrimaryDark</item> <item name="colorAccent">@color/colorAccent</item> <item name="colorControlActivated">@color/primary</item> <item name="colorControlHighlight">@color/colorPrimary</item> </style>

フォーカスされていない状態のヒントの色、下線の色をプログラムで変更したい。

色.xml

<resources> <color name="primary">#1976d2</color> <color name="primary_dark">#E12929</color> <color name="primary_darker">#CC1D1D</color> <color name="accent">#000000</color> <color name="blue">#1976d2</color> <color name="black">#000000</color> <color name="lightblue">#1976d2</color> <color name="lightgray">#666666</color> </resources>
4

4 に答える 4

0

これを試して

TextInputLayout emailInput, passInput;
EditText edtEmail, edtPass;
Button btnLogin;
String hintEmail = "",hintPass="";


emailInput = (TextInputLayout) findViewById(R.id.emailInput);
passInput = (TextInputLayout) findViewById(R.id.passInput);

edtEmail = (EditText) findViewById(R.id.edtEmail);
edtPass = (EditText) findViewById(R.id.edtPass);

btnLogin = (Button) findViewById(R.id.btnLogin);
btnLogin.setOnClickListener(this);


    btnLogin.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            if (edtEmail.getText().toString().trim().isEmpty()) {
                edtEmail.setHint("please enter Email Address ");
                hintEmail = "please enter Email Address ";
                edtEmail.setHintTextColor(ContextCompat.getColor(this,R.color.colorRed));
                emailInput.setHint("");

            }

            if (edtPass.getText().toString().trim().isEmpty()) {
                edtPass.setHint("please enter Password ");
                hintPass = "please enter Password  ";
                edtPass.setHintTextColor(getResources().getColor(R.color.colorRed));
                passInput.setHint("");

            }

        }
    });
    edtEmail.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View view, MotionEvent motionEvent) {
            emailInput.setHint(hintEmail);
            edtEmail.setHint("");
            return false;
        }
    });
    edtPass.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View view, MotionEvent motionEvent) {
            passInput.setHint(hintPass);
            edtPass.setHint("");
            return false;
        }
    });
于 2017-07-26T05:33:17.257 に答える
0

あなたが試してみるべきような何か

<android.support.design.widget.TextInputLayout
android:id="@+id/usernameWrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<EditText
    android:id="@+id/username"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:inputType="textEmailAddress"
    android:hint="Username"/>

</android.support.design.widget.TextInputLayout>
于 2017-07-26T05:30:15.917 に答える