0
A
回答
2
風格edittext_custom_style.xml:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#75d0e2" />
</shape>
</item>
<item android:left="5dp">
<shape android:shape="rectangle">
<solid android:color="#FFFFFF" />
</shape>
</item>
</layer-list>
XML:
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edittext_custom_style"/>
0
Create same bar drawable and assign drawableLeft to edittext
Code put image in respective drawables like drawable-xhdpi etc
Sample is here.
<EditText
android:id="@+id/password"
style="@style/inputFieldStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/password_icon"
android:hint="@string/password_hint"
android:imeOptions="actionDone"
android:inputType="textPassword"
android:maxLines="1"/>
+0
請發佈代碼示例更清晰。如果您向提問者展示如何操作,它只是有用的答案...... – Opiatefuchs
相關問題
- 1. 垂直文本旁邊的垂直線
- 2. 垂直黑線
- 3. dygraph垂直線
- 4. dhtmlxScheduler的垂直線
- 5. 的Android的EditText使用圖標和垂直線
- 6. 垂直內容的Android的EditText
- 7. 在垂直線上垂直寫文本
- 8. EDITTEXT只移動垂直的Andriod
- 9. settext在垂直行中的多個edittext
- 10. 的Android EditText上垂直滾動問題
- 11. 垂直線問題
- 12. 垂直白線蝕
- 13. 動態垂直線
- 14. 垂直線與GGPLOT2
- 15. 褪色垂直線
- 16. Chart.js 2.0 - 垂直線
- 17. 空間線垂直
- 18. EditText水平和垂直滾動
- 19. 以編程方式垂直添加EditText
- 20. 自定義EditText垂直對齊
- 21. 垂直滾動條在多行EditText
- 22. 製作android EditText垂直滾動條
- 23. Android EditText提示不垂直滾動
- 24. 樣式化的垂直線
- 25. divs之間的垂直線
- 26. NSTextView中的垂直線
- 27. Android Studio中的垂直線
- 28. 帶CSS的垂直線條
- 29. Edittext背景爲直線
- 30. 直方圖中的垂直線與pyplot
你可以使用背景或左繪製爲 –