无法使用BubbleTextView

时间:2019-11-25 15:57:41

标签: java android

我使用BubbleView库。在我看来,我已正确注册了所有内容,但bubbleview的箭头和背景对我而言并不奏效。可能是什么问题?

xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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="match_parent"
    android:background="@color/colorBackGround"
    android:orientation="vertical">

    <TextView
        android:id="@+id/dialog_item_username"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginStart="5dp"
        android:layout_marginTop="5dp"
        android:fontFamily="sans-serif-light"
        android:text="spark"
        android:textColor="@color/colorWhite"
        android:textSize="20sp"
        android:textStyle="bold" />


    <com.github.library.bubbleview.BubbleTextView
        android:id="@+id/dialog_item_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/dialog_item_username"
        android:layout_marginTop="5dp"
        android:layout_alignParentStart="true"
        android:fontFamily="sans-serif-light"
        android:padding="10dp"
        android:text="Message"
        android:textColor="@color/colorWhite"
        app:arrowWidth="10dp"
        app:bubbleColor="@color/colorSecondBackGround"
        app:angle="20dp"
        app:arrowHeidth="20dp"
        />

</RelativeLayout>

渐变

implementation 'com.github.lguipeng:BubbleView:1.0.1'

And this is what happens

3 个答案:

答案 0 :(得分:0)

app:arrowLocation支持left right top bottom

app:arrowCenter将使边缘的箭头center

app:angle是气泡视图的radius

.........您使用过...阅读可能对https://github.com/lguipeng/BubbleView有帮助。

答案 1 :(得分:0)

尝试以下代码:

FrameMetricsObserver

OUTPUT IMAGE

答案 2 :(得分:0)

在AVD上启动应用程序之后。问题解决了。非常感谢大家的回答!