我怎样才能在我的文本上设置这个背景

时间:2016-08-22 15:15:18

标签: android android-studio

我发现一些应用程序(主要是聊天应用程序)具有特殊的文本背景,如下所示:http://puu.sh/qKlgX/0c95be7545.jpg 我的问题很明显,我怎么能这样做呢? 谢谢

2 个答案:

答案 0 :(得分:1)

我建议你使用

myTextView.setBackgroundDrawable(R.drawable.your_image.png);

我认为这可能有效,我通常将此用于我的应用及其背景。

希望这有帮助!

答案 1 :(得分:0)

尝试以下但注意,不使用箭头

可绘制文件夹中的

1- shape_chat_message.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#eda349"/>
    <corners android:radius="4dp"/>
</shape>

2- your_layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:clipToPadding="false"
android:clipChildren="false">

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:background="@drawable/shape_chat_message"
    android:layout_height="wrap_content"
    android:elevation="2dp"
    android:padding="8dp"
    android:layout_margin="@dimen/activity_vertical_margin">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/tv_message_body"
        android:text="Lorem Ipsum is simply dummy text of the printing and typesetting industry."
        android:textColor="#ffffff"
        android:textSize="16dp" />

</LinearLayout>

</LinearLayout>