2

我对此有点坚持。我在 FrameLayout 中有一个 ImageView 和 TextView,我正在尝试在 ImageView 上制作一个带有文本的自定义横幅。我似乎无法弄清楚如何使 textview 对角线和向左或向右。这是我能找到的最接近的表达我想要做的事情(但使用我自己的自定义文本):

在此处输入图像描述

有没有一种简单/有效的方法来做到这一点?

这是我当前的xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <ImageView
            android:id="@+id/icon"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:src="@drawable/ic_launcher" />

        <TextView
            android:id="@+id/textView1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#000000"
            android:ellipsize="none"
            android:text="TextView"
            android:textColor="#ffffff" />

    </FrameLayout>

</LinearLayout>

编辑:请记住,我不希望能够将文本动态更改为我想要的任何内容。

4

1 回答 1

0

我建议你看看 ApiDemos 示例项目。您会在那里找到一个示例,沿路径绘制文本。com.example.android.apis.graphics.TextAlign.java

于 2012-08-23T19:32:38.203 回答