zoukankan      html  css  js  c++  java
  • 用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>

  • 相关阅读:
    手把手教你学Git
    服务器上Mysql的安装与配置
    python 5
    python 4
    python 3
    python 2
    区分命令行模式和Python交互模式
    CUDA编程模型之内存管理
    多目标优化算法-NSGA2
    C# ListView 如何添加列标头
  • 原文地址:https://www.cnblogs.com/javawebsoa/p/3235624.html
Copyright © 2011-2022 走看看