Android之控制項

2021-08-02 17:17:56 字數 2425 閱讀 8117

1.textview文字框的使用

新建乙個專案(model)

選中到android--->找到你新建的專案--->res---->移動到layout上新建乙個.xml檔案

片段內容如下

android

:layout_width=

"wrap_content"

android

:layout_height=

"wrap_content"

android

:text=

android

:autolink=

"all"

android

:typeface=

"sans"

android

:textstyle=

"bold"

android

:singleline=

"true"

android

:ellipsize=

"marquee"

android

:focusable=

"true"

android

:focusableintouchmode=

"true"

android

:drawableleft=

"@drawable/icon_user"

android

:id=

"@+id/tv_main_text"

/>

2.edittext輸入框的使用**片段如下

android

:layout_width=

"match_parent"

android

:layout_height=

"wrap_content"

android

:hint=

"請輸入**號碼"

android

:inputtype=

"number"

android

:background=

"@drawable/et_selector"

/>

3.shape外形資源找到res下方的drawable右擊new乙個.xml檔案

片段**如下

xml version=

"1.0"

encoding=

"utf-8"

?>

xmlns:

android

=""android

:shape=

"rectangle"

>

android

:color=

"#66ff00ff"

>solid>

android

:radius=

"13dp"

>corners>

android

:width=

"1dp"

android

:color=

"#000000"

>stroke>

android

:bottom=

"5dp"

android

:left=

"110dp"

android

:right=

"5dp"

android

:top=

"10dp"

>padding>

shape>

4.selector選擇器片段**如下

xml version=

"1.0"

encoding=

"utf-8"

?>

xmlns:

android

="">

android

:state_focused=

"true"

android

:drawable=

"@drawable/et_shape">item>

android

:state_focused=

"false"

android

:drawable=

"@drawable/et_shape2">item>

selector>

控制項縮小android控制項之WebView

工作之餘抽點時間出來寫寫博文,希望對新接觸的朋友有幫助。今天在這裡和大家一起學習一下控制項縮小 發現這個控制項挺好用,能自已控制進度條,而且這個控制項的功能非常壯大,後續再另說 先上個簡單的 每日一道理 青春是用意志的血滴和拼搏的汗水釀成的瓊漿 歷久彌香 青春是用不凋的希望和不滅的嚮往編織的彩虹 絢...

Android 控制項之TabHost Tab頁

tabhost用來顯示tab頁,先看效果 一概述提供tab頁的視窗檢視容器,它有倆個children,一組是使用者可以選擇指定tab頁的標籤,另一組是framelayout用來顯示該tab頁的內容。個別元素通常控制使用這個容器物件,而不是設定在子元素本身的值。二 重要方法 addtab tabhos...

Android控制項之GridView

package com.example.gridviewtest import android.os.bundle import android.view.view import android.widget.adapterview import android.widget.adapterview...