• 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>




  • 相关阅读:
    关于数论的一些总结
    gym101431B
    4.29训练题解
    hdu4347
    5.13训练的一些题解
    5.20训练的一些题解
    hdu4796
    hdu5984
    bzoj1941 hdu5992
    hdu4307
  • 原文地址:https://www.cnblogs.com/alamps/p/5208168.html
Copyright © 2020-2023  润新知