• 用RelativeLayout布局可以在imageview中写上文字


    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <!-- 用RelativeLayout框架布局可以 在imageview中写上文字 -->

        <RelativeLayout
            android:id="@+id/linear_btu"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical" >

            <ImageView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/feature_guide_4"
                android:contentDescription="@string/app_name" >
            </ImageView>

            <!--
                 <TextView
                android:id="@+id/txt_music"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="开始你的看图之旅吧"
                android:textSize="18dip" />
            -->
        </RelativeLayout>

    </LinearLayout>

  • 相关阅读:
    nodejs install
    taobao sass
    Cors 跨域访问API
    多文件上传
    Next
    实用小工具
    下载包含src,tgz,zip的文件
    HTML5文件API
    Bootstrap (导航、标签、面包屑导航)
    Bootstrap 固定定位(Affix)
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3235624.html
Copyright © 2020-2023  润新知