1
A
回答
2
你必須使用Vector Drawable用於創建自定義形狀,因爲你需要。
我爲此創建了一個樣本。 創建custom_vector.xml下的文件RES /繪製/
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="20dp"
android:width="20dp"
android:viewportWidth="400"
android:viewportHeight="400">
<group
android:pivotX="10.0"
android:pivotY="10.0">
<!-- the outside box -->
<!-- top line & top left corner -->
<path android:pathData="M 30 60 H 40 c -40 0 -35 0 -35 35 "
android:strokeColor="#000000" android:strokeWidth="10" />
<!-- left line & bottom left corner -->
<path android:pathData="M 5 64 v 271 c 0 40 0 35 35 35 "
android:strokeColor="#000000" android:strokeWidth="10" />
<!-- bottom line & bottom right corner -->
<path android:pathData="M 30 370 h 330 c 40 0 35 -10 35 -35"
android:strokeColor="#000000" android:strokeWidth="10" />
<!-- right line & top right corner -->
<path android:pathData="M 395 356 v -261 c0 -40 0 -35 -50 -35"
android:strokeColor="#000000" android:strokeWidth="10" />
<!-- top line till end-->
<!-- 140 is the starting point of line after TEXT-->
<path android:pathData="M 140 60 370 60"
android:strokeColor="#000000" android:strokeWidth="10" />
</group>
</vector>
您可能需要更改的最後一個路徑變量的值
頂線,直到結束
爲根據您的文本在處'姓名'。您也可以根據需要修改形狀或角落。
下RES /佈局創建test_layout.xml文件/
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#faffd5">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/custom_vector"
android:layout_margin="20dp"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:paddingLeft="5dp"
android:textSize="20sp"
android:paddingRight="5dp"
android:text="Name"/>
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="40dp"
android:layout_marginRight="20dp"
android:layout_marginBottom="15dp"
android:textSize="25sp"
android:background="@android:color/transparent"
android:text="Alex Smith"/>
</LinearLayout>
</LinearLayout>
看起來像這樣的屏幕截圖
1
試試下面...
你實現這個使用ConstraintLayout
。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:background="@android:color/white"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/_10sdp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="@drawable/round"
android:padding="@dimen/_10sdp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:padding="@dimen/_5sdp"
android:text="Name"
app:layout_constraintLeft_toLeftOf="@+id/edittext"
android:layout_marginLeft="@dimen/_15sdp"
app:layout_constraintTop_toTopOf="@+id/edittext"
app:layout_constraintBottom_toTopOf="@+id/edittext"
android:textColor="@android:color/black"
tools:layout_editor_absoluteX="107dp"
tools:layout_editor_absoluteY="90dp" />
</android.support.constraint.ConstraintLayout>
round.xml
<?xml version="1.0" encoding="utf-8"?>
<!-- res/drawable/rounded_edittext.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" android:padding="10dp">
<solid android:color="#FFFFFF"/>
<stroke android:color="@android:color/darker_gray" android:width="@dimen/_1sdp"/>
<corners
android:bottomRightRadius="15dp"
android:bottomLeftRadius="15dp"
android:topLeftRadius="15dp"
android:topRightRadius="15dp"/>
</shape>
輸出:see
+0
謝謝,但我有背景圖像在屏幕周圍,所以我想讓ui透明,以便背景圖像不會影響 – Aditi
+0
明白了你的觀點......如果我找到了你想要的東西,我會更新你。 –
相關問題
- 1. 沒有背景的android圓角矩形直邊矩形
- 2. 使六邊形形狀的邊框,圓角和透明背景
- 3. 與平鋪背景形狀的圓角
- 4. 背景上的圓角?
- 5. 圓角與背景顏色
- 6. 圖像角落上的圓角邊界漸變背景拉伸
- 7. 背景三角形而不是圓JS
- 8. 鑽石形,圓角和背景圖像
- 9. 背景圖像圓形角落
- 10. NSTextView圓角,繪製背景
- 11. Delphi TRichEdit將背景形狀設置爲圓角矩形
- 12. CSS圓角表角落,漸變背景
- 13. 按鈕角落圓角背景圖片
- 14. WPF Datagrid圓角與透明背景
- 15. Firefox中的圓角:邊框和背景之間的空間
- 16. CSS - 左上角背景圖像(彎曲)
- 17. android:帶有動態背景顏色的圓角背景的TextView
- 18. bash PS1提示符的三角背景
- 19. 如何使用圖像創建背景,無邊框圓角
- 20. 三角形與背景圖像
- 21. 添加背景圓角[CSS/Twitter的Bootstrap]
- 22. 更改背景大小:從左上角到右上角錨點
- 23. 圓角視圖的角落android,不圓背景
- 24. 邊框背景上的Style.DataTrigger
- 25. UIImageView圓角有白色背景
- 26. 圓角IE和背景圖像
- 27. IE9圓角和透明背景問題
- 28. NSAttributedString背景顏色和圓角
- 29. 如何創建背景CSS div /圓角?
- 30. WPF圓角背景出血通過
創建一個由的EditText和TextView的和然後的相對佈局使用您的可繪製背景進行特定佈局,並添加文本和編輯文本提示 – YoLo
@ysl我想背景透明nt,因爲我在屏幕上有背景圖像。 – Aditi
然後不要設置背景顏色爲您的可繪製 – YoLo