«android-edittext» 태그된 질문

EditText는 Android 앱의 표준 텍스트 입력 위젯입니다. 사용자가 앱에 텍스트를 입력해야하는 경우 이것이 기본 방법입니다.


5
EditText 변경된 리스너에서 문자 계산
내 프로젝트에는 EditText. 의 문자를 세고 EditText그 숫자를에 표시 하고 싶습니다 TextView. 다음 코드를 작성했으며 정상적으로 작동합니다. 그러나 내 문제는 클릭 Backspace할 때 카운트 업되지만 숫자를 줄여야합니다. 어떻게 고려할 수 Backspace있습니까? tv = (TextView)findViewById(R.id.charCounts); textMessage = (EditText)findViewById(R.id.textMessage); textMessage.addTextChangedListener(new TextWatcher(){ public void afterTextChanged(Editable s) { i++; tv.setText(String.valueOf(i) + " / " …

18
Android의 비밀번호 힌트 글꼴
EditText가 암호 모드 인 경우 힌트가 다른 글꼴 (커 런서?)로 표시되는 것 같습니다. 어떻게 피할 수 있습니까? EditText가 암호 모드가 아닌 경우와 동일한 글꼴로 힌트를 표시하고 싶습니다. 내 현재 XML : <EditText android:hint="@string/edt_password_hint" android:layout_width="fill_parent" android:layout_height="wrap_content" android:password="true" android:singleLine="true" />

30
EditText 내 드로어 블에서 클릭 이벤트 처리
EditText다음 XML을 사용하여 위젯 의 텍스트 오른쪽 이미지를 추가했습니다 . <EditText android:id="@+id/txtsearch" ... android:layout_gravity="center_vertical" android:background="@layout/shape" android:hint="Enter place,city,state" android:drawableRight="@drawable/cross" /> 그러나 EditText포함 된 이미지를 클릭 할 때 를 지우고 싶습니다 . 어떻게해야합니까?


7
Android : 여러 줄의 EditText (텍스트 영역)에 대한 세로 정렬
텍스트 영역의 높이에 5 줄을 갖고 싶습니다. 다음 코드를 사용하고 있습니다. <EditText android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center" android:singleLine="false" android:lines="5" android:layout_marginLeft="10dip" android:layout_marginRight="10dip" /> 텍스트 영역은 문제가 없지만 텍스트 필드 중간에 커서가 깜박이는 것이 문제입니다. 텍스트 필드의 첫 문자에서 첫 번째 줄에서 깜박이기를 원합니다.


30
EditText가 비어 있는지 확인하십시오. [닫은]
폐쇄되었습니다 . 이 질문은 더 집중되어야 합니다. 현재 답변을받지 않습니다. 이 질문을 개선하고 싶습니까? 이 게시물 을 편집 하여 한 가지 문제에만 집중할 수 있도록 질문을 업데이트하십시오 . 휴일 2 년 전 . 이 질문을 개선하십시오 EditTexts사용자가 입력 할 수있는 안드로이드에 5 가 있습니다. 5 EditTexts가 모두 null인지 확인하는 방법이 …

18
Android에서 Soft Keyboard Next를 클릭하면 다른 EditText로 이동
'Next'를 누르면 User EditText의 초점이 Password로 이동해야합니다. 그런 다음 비밀번호에서 오른쪽으로 이동해야합니다. 코드 작성 방법을 알려 주시겠습니까? <LinearLayout android:id="@+id/LinearLayout01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" > <TextView android:id="@+id/username" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="User Name*" /> <EditText android:id="@+id/txt_User" android:layout_width="290dp" android:layout_height="33dp" android:singleLine="true" /> </LinearLayout> <LinearLayout android:id="@+id/LinearLayout02" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" > <TextView android:id="@+id/password" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Password*" /> <EditText …


8
대화 상자에서 편집 텍스트 상자를 만드는 방법
암호를 입력하기 위해 대화 상자에 편집 텍스트 상자를 만들려고합니다. 내가 할 때 할 수 없습니다. 나는 그것에 초보자입니다. 이것 좀 도와주세요. public class MainActivity extends Activity { Button create, show, setting; //String pass="admin";String password; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); create = (Button)findViewById(R.id.amcreate); setting = (Button)findViewById(R.id.amsetting); show = …



22
프로그래밍 방식으로 스크롤보기를 특정 편집 텍스트로 스크롤하는 방법이 있습니까?
스크롤보기로 매우 긴 활동이 있습니다. 사용자가 작성 해야하는 다양한 필드가있는 양식입니다. 양식의 절반 아래에 확인란이 있으며 사용자가 확인하면보기의 특정 부분으로 스크롤하고 싶습니다. 프로그래밍 방식으로 EditText 객체 (또는 다른 뷰 객체)로 스크롤하는 방법이 있습니까? 또한 X 및 Y 좌표를 사용하여 이것이 가능하다는 것을 알고 있지만 양식이 사용자마다 변경 될 수 있으므로이 …


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.