我想在android中实现一本书的选项。其中之一是在文本部分的背景中设置图片。我怎么能这样做?
感谢
答案 0 :(得分:2)
在XML文件中使用以下代码。
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/yourImageName"
/>
答案 1 :(得分:0)
设置textview背景
android:background="@drawable/imgsrc"
答案 2 :(得分:0)
尝试此操作并根据您的要求修复imageview的高度
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>