編輯:關於android開發
我們的APP要想吸引用戶,就要把UI(臉蛋)搞漂亮一點。畢竟好的外貌是增進人際關系的第一步,我們程序員看到一個APP時,第一眼就是看這個軟件的功能,不去關心界面是否漂亮,看到好的程序會說“我cao!這個功能寫得很NB”。兩者都很重要。下面我們先來首詩,然後進入正題:
詩曰:
憶昔花間初識面,紅袖半遮,妝臉輕轉。石榴裙帶,故將纖纖玉指偷捻,雙鳳金線。
碧梧桐鎖深深院,誰料得兩情,何日教譴绻?羨春來雙燕,飛到玉樓,朝暮相見。
創建新的項目,拖拽TextView,Button,EditText,分別對著幾個進行講解:
<TextView
android:layout_width="wrap_content"--對齊的方式,有兩種可以選
android:layout_height="wrap_content"
android:text="暗裡著迷"
android:gravity="top"--布局的方式,多個可選
android:textSize="80sp"字體大小
android:layout_marginTop="12dp"
android:id="@+id/textView"
android:layout_alignParentStart="true" />
<Button android:id="@+id/Btn_ok"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="按鈕"
android:layout_below="@+id/lrc"
android:layout_alignStart="@+id/lrc"
android:layout_marginStart="55dp"
android:layout_marginTop="27dp"/>
<EditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:ems="10"
android:layout_below="@+id/Btn_ok"
android:layout_alignStart="@+id/lrc"
android:layout_marginTop="37dp"
android:id="@+id/editText"
android:hint="這時是編輯器,可以寫入內容。例:暗裡著迷"--這裡實現編輯框中提示,當用會輸入是自動消失
android:maxLines="3"--最多允許的行數,超過會把之前的向上移,不會改變編輯器的大小
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="
可不可不要這麼樣徘徊在目光內
你會察覺到我根本寂寞難耐
即使千多百個深夜曾在夢境內"
android:id="@+id/lrc"
android:gravity="left"
android:layout_alignParentStart="true"
android:layout_marginStart="10dp"
android:layout_marginTop="140dp"
android:textSize="18sp"
android:textColor="#00ff00"
/>
安卓第十天筆記-fragment,安卓-fragment安卓第十天筆記-fragment Fragment(片段) 一.Fragment簡介 *Fragment是3.0引
ELF Format 筆記(十四)—— 段內容,elfformatilocker:關注 Android 安全(新手) QQ: 2597294287 一個段 (segmen
Android 采用post方式提交數據到服務器,androidpost接著上篇《Android 采用get方式提交數據到服務器》,本文來實現采用post方式提交數據到服
Android仿QQ界面,android仿界面最近這幾天,一直跟著朋友們聚會什麼的,沒怎麼做項目,今天總算是有時間開電腦繼續做我的項目了。下面我就把我做的效果展示一下。