2016-08-22 108 views
0

我想設計EditText密碼顯示密碼imageView。但是我不能正確設計它,因爲我看不到ImageView,因爲EditText's layout_width="fill_parent"。當我將其更改爲wrap_content時,我可以看到我的ImageView,但在UI中看起來很糟糕。是否可以設計它而不給定尺寸?使用顯示密碼按鈕設計密碼文本

這是我的代碼;

 <android.support.design.widget.TextInputLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="8dp" 
      android:orientation="horizontal" 
      android:layout_marginBottom="8dp"> 

      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       android:layout_width="fill_parent" 
       android:layout_height="fill_parent" 
       android:orientation="horizontal"> 

      <EditText 
       android:id="@+id/registerPassword" 
       android:layout_width="fill_parent" 
       android:layout_height="wrap_content" 
       android:hint="@string/register_password" 
       android:inputType="textPassword" /> 
      <ImageView 
       android:id="@+id/fragment_login_password_visibility" 
       android:layout_height="wrap_content" 
       android:layout_width="wrap_content" 
       android:src="@android:drawable/ic_partial_secure" 
       android:layout_gravity="center" 
       android:clickable="true"/> 

      </LinearLayout> 
     </android.support.design.widget.TextInputLayout> 

編輯:

機器人:layout_weight = 1個來解決問題。現在我可以看到EditText左邊的ImageView。但是現在,我TextInputLayout提示不起作用。

Here Hint works

Here Hint does not works

+0

最新的支持庫有內置的密碼切換的支持。 https://developer.android.com/topic/libraries/support-library/revisions.html#rev24-2-0 – Budius

回答

0

第一組LinearLayout 「1」 android:weightSum。然後,分別將EditTextandroid:layout_widthandroid:layout_weight設置爲「0dp」和「1」。

+0

請看我的編輯,更改提示後不適用於密碼字段 – goGud

+0

這些更改與'EditText'提示無關。 –

+0

啊哈,那是因爲LinearLayout。是否有可能使用另一個選項而不是linearlayout horizantal orientation? – goGud

0

你嘗試使用重量?

android:layout_weight="1"

android:layout_width="0dp"android:layout_width="wrap_content"

<android.support.design.widget.TextInputLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_marginTop="8dp" 
     android:orientation="horizontal" 
     android:layout_marginBottom="8dp"> 

     <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" 
      android:orientation="horizontal"> 

     <EditText 
      android:id="@+id/registerPassword" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:hint="@string/register_password" 
      android:inputType="textPassword" /> 

     <ImageView 
      android:id="@+id/fragment_login_password_visibility" 
      android:layout_height="wrap_content" 
      android:layout_width="wrap_content" 
      android:src="@android:drawable/ic_partial_secure" 
      android:layout_gravity="center" 
      android:clickable="true"/> 

     </LinearLayout> 
    </android.support.design.widget.TextInputLayout> 
+0

layout_weight解決了這個問題,但現在我失去了TextInputLayout屬性... – goGud

+0

請參閱我的編輯 – goGud

0

試試這個:

<LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 
      <EditText 
       android:id="@+id/editText" 
       android:layout_weight="1" 
       android:layout_width="0dp" 
       android:layout_height="wrap_content" 
       android:hint="Password" 
       android:singleLine="true" 
       android:textSize="25sp" 
       android:paddingRight="60dp" 
       /> 
      <ImageButton 
       android:id="@+id/showpass" 
       android:layout_marginLeft="-60dp" 
       style="?android:buttonBarButtonStyle" 
       android:paddingBottom="5dp" 
       android:src="@drawable/pass_ic" 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" /> 
     </LinearLayout> 
0

我建議您使用passwordToggleDrawable一個TextInputLayout。

<android.support.design.widget.TextInputLayout 
      android:id="@+id/textInputPasswordLayout" 
      android:layout_width="0dp" 
      android:layout_height="wrap_content" 
      app:passwordToggleContentDescription="Show" 
      app:passwordToggleDrawable="@drawable/ic_password_visibility_selector" 
      app:passwordToggleEnabled="true"> 

      <android.support.design.widget.TextInputEditText 
       android:id="@+id/textInputEditTextPassword" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:ems="10" 
       android:fontFamily="sans-serif-light" 
       android:gravity="bottom" 
       android:hint="@string/enter_your_password"/> 


     </android.support.design.widget.TextInputLayout> 

app:passwordToggleDrawable="@drawable/ic_password_visibility_selector"分配您繪製