android在一张图片相应位置显示字的布局
展开全部
1、在一张图片的任意位置显示文字,使用RelativeLayout布局,俗称相对布局,是在Android开发中使用得最多的一种布局方式,比如在图片的下边栏显示一行文字,代码如下:
<ImageView
android:id="@+id/imageview_001"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginTop="100dp"
/>
更多Android例子,百度一下就知道了,平时也做点学习,TeachCourse比较适合初学者,谢谢采纳!
<ImageView
android:id="@+id/imageview_001"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_alignParentTop="true"
android:src="@drawable/ic_launcher"
/>
<TextView
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_marginTop="100dp"
/>
更多Android例子,百度一下就知道了,平时也做点学习,TeachCourse比较适合初学者,谢谢采纳!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询