解决方案 »

  1.   

    你看看是不是要这种效果的,如果是 留个邮箱 我发你 demo,各种效果都有,用shape自己画。
      

  2.   

    你可以用一个布局吧两边的放在那,然后上面加个ImageView放在中间
      

  3.   

    写一个XML  内容是<?xml version="1.0" encoding="utf-8"?>
    <shape xmlns:android="http://schemas.android.com/apk/res/android" >    <solid android:color="#ffffff" />    <stroke
            android:width="0.01px"
            android:color="#303030" />    <corners
        android:topLeftRadius="12px" 
        android:topRightRadius="12px"  12代表弧度
        android:bottomRightRadius="0px"  
        android:bottomLeftRadius="0px"
        /></shape>
      

  4.   

    6L正解,写个shape的XML,然后background引用就可以了!