6

我们可以为 textview 设置复合可绘制对象,如下使用drawableLeftsetCompundDrawables但使用它只能将可绘制对象放置在左/右/顶部/底部。但我只想将可绘制对象放在 Textview 的左上角和右上角。我怎样才能做到这一点 ?

4

2 回答 2

3
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/ic_launcher" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@+id/imageView1"
    android:text="@string/text" />

这样就可以了。

于 2013-02-06T10:24:40.457 回答
1

我认为,有一种比 3 个视图更简单、更快捷的方法。您需要为图标准备适当的 9patch,然后使用 FrameLayout。甚至可能只有一个 EditText/TextView使用与背景相同的可绘制对象。此答案中描述了更多详细信息。

于 2013-07-26T11:34:37.613 回答