1. 程式人生 > >Android-TextView 控件常用屬性以及基本用法

Android-TextView 控件常用屬性以及基本用法

pan left 第一個 。。 android img 上下 ips 插入

前言

  這是我第一次寫博客,第一次的筆記,不足之處多諒解。開門見山,這一篇博客主要講一下在Android開發中,UI控件TextView的一些使用方式,主要介紹一些常用的屬性,加上一些實例,希望大家看了後能夠掌握其基本用法。

【基本屬性】

【設置ID】

  android:id="@+id/tv"     //id:自定義 用於關聯控件,然後對此控件的操作使用

【設置寬度和高度】

android:layout_width="wrap_content"
android:layout_height="wrap_content"
 

技術分享圖片

第一個 自適應:根據寬度/高度 自動匹配

第二個 充滿:根據寬度/高度 充滿全屏

【設置背景顏色】

android:background="#dddddd"
可以填充各種顏色,也可以插入圖片 
例如:

技術分享圖片

【插入圖片方向】

android:drawableLeft="@drawable/ic_launcher_foreground"
android:drawableBottom=""
android:drawableRight=""
android:drawableStart=""
android:drawableEnd=""
android:drawableTop=""
這個不多說了 top就是在textview上面 bottom就是下面

【文字方向:居中、左右上下。。。】
android:gravity="center"

技術分享圖片

【設置字體、字體顏色、字體大小、字體加粗】

技術分享圖片
android:textStyle="bold"
android:text="這是Textview"
android:textColor="#ff00feee"
android:textSize="33sp"
text:設置文字; textColor:設置字體顏色,前兩位透明度;textSize:設置字體大小 用sp為單位
textstyle:字體樣式 bold:加粗 italic:斜體
<TextView
        android:id="@+id/tv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#dddddd"
        android:drawableLeft="@drawable/ic_launcher_foreground"
        android:ellipsize="end"
        android:gravity=""
        android:textStyle="bold"
        android:text="這是Textview"
        android:textColor="#ff00feee"
        android:textSize="33sp"/>

  下面是效果圖

技術分享圖片

下面簡單的寫下代碼進行修改


技術分享圖片

【效果圖】

技術分享圖片

Android-Textview 控件簡單實用就差不多這些了


Android-TextView 控件常用屬性以及基本用法