-6
A
回答
0
- 使用this link爲CircularImageView
使用的FrameLayout
<FrameLayout android:layout_width="wrap_content" android:layout_height="wrap_content"> <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content"/> </FrameLayout>
+0
如果我使用相對佈局而不是框架佈局,那麼會有什麼區別? –
0
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#48b3ff"/>
</shape>
+1
儘管此代碼可能回答這個問題,提供額外的上下文關於如何和/或爲什麼它解決問題將提高答案的長期價值。 –
+0
此代碼適用於創建橢圓形,但根據我的問題,我需要在linearlayout中重疊此圓,並且可以通過框架佈局或相對佈局。 –
相關問題
- 1. Android佈局如何設置特定的固定佈局高度
- 2. Android佈局如何?
- 3. 如何使這個佈局Android的XML
- 4. Android如何從目前的佈局去新的佈局android?
- 5. Android如何在兩個佈局頂部佈局佈局
- 6. android使自定義的佈局形狀
- 7. Android的佈局固定
- 8. 的Android定製佈局AutoCompleteTextView
- 9. 自定義佈局的Android
- 10. Android Studio如何使相對佈局圍繞相對佈局?
- 11. Android的佈局 - 像佈局
- 12. Android:如何使用2佈局
- 13. 如何使用Android XML佈局?
- 14. 如何Android中佈局
- 15. Android:如何組織布局
- 16. 如何創建android佈局
- 17. 如何在Android中的自定義生成的佈局中添加子佈局
- 18. Android - 如何給佈局的某個百分比上色?
- 19. android - 如何在Android 3.0中設置PreferenceActivity的自定義佈局?
- 20. Android - android widget的自定義佈局
- 21. Android FragmentTabHost佈局定位
- 22. Android自定義佈局(sneekbar)
- 23. 自定義Android佈局
- 24. Android DatePicker佈局定製
- 25. 自定義AutoCompleteTextView佈局android
- 26. Android - 自定義AutoCompleteTextView佈局
- 27. XML Android定位佈局
- 28. Android自定義ListViewItem佈局
- 29. Android自定義佈局
- 30. Android - 自定義佈局Inflater
爲圓形圖像使用此libarary https://github.com/hdodenhof/CircleImageView –
我可以製作圓形圖像,但如何在佈局中插入它的某個部分,就像您在圖像中看到的那樣?得到我的poitn? –
使用框架佈局那 –