EditText邊框隱藏

這裏寫圖片描述

<LinearLayout 
    android:width="match_parent"
    android:height="wrap_content"
    android:orientation="horizontal" 
    android:background="@drawable/橢圓形的圖片">
    <ImageView 
        android:width="wrap_content"
        android:height="wrap_content"
        android:background="@drawable/放大鏡的圖片">
    <EditText 
        android:width="match_parent"
        android:background="#00000000"
        android:height="wrap_content"/>
</LinearLayout>
  • 實現隱藏邊框
    android:background=”#00000000”
    或android:background=”@null”
  • 實現不可編輯
    android:enabled=”false”可以實現不可編輯
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章