-4
A
回答
0
您可以使用CardView
並設置其高程創建陰影:
<android.support.v7.widget.CardView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardElevation="4dp">
<!-- Insert desired views here -->
</android.support.v7.widget.CardView>
注意,CardView
延伸FrameLayout
所以如果有一個以上的,將其堆放孩子。在CardView
中添加一個LinearLayout
或RelativeLayout
,並在其中一個視圖中添加視圖(在您的情況下爲EditText),以獲得更大的靈活性。
+0
當我使用CardView對象時。它說以下類無法找到 - android.support.v7.widget.CardView –
+0
@AmanAgarwal你需要添加設計支持庫到你的模塊的build.gradle,如:'compile'com.android.support:design :23.1.0''。使用您在項目中使用的版本,而不是23.1.0。 – AgileNinja
相關問題
- 1. 對iOS中的文本字段的外部陰影效果
- 2. 陰影效果的影響
- 3. 盒陰影效果
- 4. 對div的兩側的陰影效果
- 5. 如何在android中爲陰影製作陰影效果?
- 6. jQuery的CSS3文字陰影效果
- 7. NSString的陰影效果
- 8. 內陰影效果的UIView
- 9. System.TypeLoadException的陰影效果
- 10. jquery.com的陰影效果
- 11. UISegmentedControl的陰影效果?
- 12. 的Android的EditText梯度陰影
- 13. 文字陰影插入效果css3
- 14. 文字陰影效果與CSS3
- 15. jQuery/CSS文字陰影效果
- 16. WPF刪除陰影效果的影響
- 17. 插圖陰影效果
- 18. WPF窗口陰影效果
- 19. 拉斐爾陰影效果
- 20. QML內陰影效果
- 21. 箱子陰影效果
- 22. UIBezierpath陰影效果 - iOs
- 23. CSS3文字效果(文字輪廓和陰影效果)
- 24. 爲Multiline EditText應用內部陰影android
- 25. 對div寬度的文字陰影效果?
- 26. 如何在提醒對話框中添加陰影效果android
- 27. 帶有浮動陰影的動畫陰影效果
- 28. Android的對話框陰影
- 29. 破碎的陰影效果的路徑
- 30. css3插入效果的陰影
請參閱此處[此處](http://stackoverflow.com/help/asking) –