2017-02-10 37 views
-6

我在android.Please是新的下面圖片鏈接https://i.stack.imgur.com/6Z2la.png如何使給定佈局的Android

  1. 勾選給我如何可以插入圈的佈局。
  2. 我該如何製作這種圖形。
+0

爲圓形圖像使用此libarary https://github.com/hdodenhof/CircleImageView –

+0

我可以製作圓形圖像,但如何在佈局中插入它的某個部分,就像您在圖像中看到的那樣?得到我的poitn? –

+0

使用框架佈局那 –

回答

0
  1. 使用this link爲CircularImageView
  2. 使用的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中重疊此圓,並且可以通過框架佈局或相對佈局。 –