Android汽泡视图:BubbleTextView

jopen 10年前

Android汽泡视图:BubbleTextView。

BubbleTextView

Snapshot

BubbleTextView

Custom Attribute

<declare-styleable name="LeBubbleTextView">          <!-- Corner radius for LeBubbleTextView. -->          <attr name="bubbleCornerRadius" format="dimension"/>          <!-- Background color for LeBubbleTextView. -->          <attr name="bubbleBackgroundColor" format="color"/>          <!-- text size for LeBubbleTextView. -->          <attr name="bubbleTextSize" format="dimension"/>          <!-- text color for LeBubbleTextView. -->          <attr name="bubbleTextColor" format="color"/>          <!-- text for LeBubbleTextView. -->          <attr name="bubbleText" format="string"/>            <!-- direction for arrow. -->          <attr name="bubbleArrowDirection">              <enum name="left" value="1"/>              <enum name="top" value="2"/>              <enum name="right" value="3"/>              <enum name="bottom" value="4"/>          </attr>            <!-- direction for arrow. -->          <attr name = "relativePosition" format = "fraction" />        </declare-styleable>

Custom Style

    <style name="LeBubbleTextView">          <item name="bubbleCornerRadius">@dimen/bubbleView_default_radius</item>          <item name="bubbleTextSize">@dimen/bubbleView_default_text_size</item>      </style>        <style name="LeBubbleTextView.Light">          <item name="bubbleBackgroundColor">@color/bubbleView_light_background</item>          <item name="bubbleTextColor">@color/bubbleView_light_text_color</item>      </style>      <style name="LeBubbleTextView.Dark">          <item name="bubbleBackgroundColor">@color/bubbleView_dark_background</item>          <item name="bubbleTextColor">@color/bubbleView_dark_text_color</item>      </style>

项目主页:http://www.open-open.com/lib/view/home/1438863040020