zoukankan      html  css  js  c++  java
  • demo02TextView

      main.xml-----   /layout/activity_main.xml
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:paddingBottom="@dimen/activity_vertical_margin"
        tools:context=".MainActivity">
    
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/hello_world"/>
    
        <TextView
            android:id="@+id/mytext1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#FFCC00"
            android:textSize="12pt"
            android:text="我是大哥大"/>
        <TextView
            android:id="@+id/mytext2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:textColor="#FFCC00"
            android:textSize="12pt"
            android:text="网:www.baidu.com"
            android:layout_margin="30px"/>
        <TextView
                android:id="@+id/mytext3"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="#FFCC00"
                android:textSize="12pt"
                android:text="网:www.baidu.com"
                android:layout_margin="30px"/>
        <!--超链接autoLink-->
        <TextView
                android:id="@+id/mytext4"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textColor="#FFCC00"
                android:textSize="12pt"
                android:autoLink="all"
                android:text="网:www.google.com"
                android:layout_marginTop="10px"
                android:maxLength="3"/>
        <TextView
                android:id="@+id/mytext4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:background="@drawable/logo"
                android:text="alamps在文字背景下的水印"
                android:textStyle="bold"
                android:textColor="#000000"/>
    </RelativeLayout>




  • 相关阅读:
    Fatal error: Maximum execution time of 30 seconds exceeded in
    常见变量命名规则
    Rust使用国内镜像安装依赖
    flutter使用国内镜像源
    7个每天晚上应该坚持的好习惯
    网络数据传输格式的思考
    Deepin安装 ruby 包管理工具 RVM(适用于 Debian 系列)
    C语言数据类型关键字
    win10 powershell禁止运行脚本解决
    Linux 查看系统相关信息(系统发型版本及内核版本等)
  • 原文地址:https://www.cnblogs.com/alamps/p/5208168.html
Copyright © 2011-2022 走看看