我想在android中隐藏textView的下划线。我怎么能实现这一点。我已经尝试将背景颜色设置为'透明'或'null'。但在输入下划线时仍然可以看到。
答案 0 :(得分:0)
试试此代码
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/hello"
android:background="#00000000" />
更新:
试试这个
someTextView.clearComposingText();
希望有所帮助