PDA

View Full Version : حذف خط زیر EditText



gilas1368
شنبه 01 شهریور 1393, 18:07 عصر
کسی میدونه چطور میشه خطی ک زیر EditText هست رو حذف کرد یا رنگش رو یا اصن حالتش(میخام ی خط ساف سفید رنگ باشه) رو تغییر داد؟:متفکر:

farhadfery
شنبه 01 شهریور 1393, 20:36 عصر
<EditTextandroid:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/hello"
android:background="#00000000" />

و یا در برنامه:

editTextView.setBackgroundColor(0);

و با

<EditText android:id="@+id/edittext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background_normal"
/>