當前位置:首頁 » 安卓系統 » android界面漂亮

android界面漂亮

發布時間: 2024-09-06 07:01:46

1. android 界面設計怎麼好看

這段時間自己研究了挺多安卓的東西,有了更多的想法,在此描述一下。
方法/步驟
學習原生軟體的界面開發,而且最好還是看一些開源的,無論從設計的角度還是從開發的角度都是極好的。
比如優秀的作品很多,這些不開源學習界面就好,開源的可以看看系統的應用。和系統本身結合的非常好,設計風格和系統也很統一,給用戶較好的體驗。
2
確定整體產品色彩基調,色彩基調可以從產品功能中提取,也可以從產品logo中提取;
3
做出界面原型,包括功能布局、頁面交互等元素;
4
在界面原型基礎上進行色彩添加,進一步的細節調整;
5
有了好的外形基礎後,再就是回歸到用戶體驗。記住用戶才是第一位的。交互設計通常靠外形吸引用戶,但真正留住用戶的是細節上的人性化。讓這些極簡的設計細節控制用戶的生活習慣,最終讓用戶離不開它們!根據用戶使用體驗反饋再次修改界面,不斷完善。

2. 如何設計android的登錄界面

在網上在到一個登錄界面感覺挺不錯的,給大家分享一下~先看效果圖:

這個Demo除了按鈕、小貓和Logo是圖片素材之外,其餘的UI都是通過代碼實現的。

?

一、背景

背景藍色漸變,是通過一個xml文件來設置的。代碼如下:

background_login.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:andro>
<gradient
android:startColor="#FFACDAE5"
android:endColor="#FF72CAE1"
android:angle="45"
/>
</shape>


startColor是漸變開始的顏色值,endColor是漸變結束的顏色值,angle是漸變的角度。其中#FFACDAE5中,FF是Alpha值,AC是RGB的R值,DA是RGB的G值,E5是RGB的B值,每個值在00~FF取值,即透明度、紅、綠、藍有0~255的分值,像要設置具體的顏色,可以在PS上的取色器上查看設置。

?

?

二、圓角白框

效果圖上面的並不是白框,其實框是白色的,只是設置了透明值,也是靠一個xml文件實現的。

background_login_div.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:andro>
<solid android:color="#55FFFFFF" />
<!-- 設置圓角
注意: bottomRightRadius是左下角而不是右下角 bottomLeftRadius右下角-->
<corners android:topLeftRadius="10dp" android:topRightRadius="10dp"
android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"/>
</shape>

?

三、界面的布局

界面的布局挺簡單的,就直接貼代碼啦~

login.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:andro
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_login">
<!-- padding 內邊距 layout_margin 外邊距
android:layout_alignParentTop 布局的位置是否處於頂部 -->

<RelativeLayout
android:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="15dip"
android:layout_margin="15dip"
android:background="@drawable/background_login_div_bg" >
<!-- 賬號 -->
<TextView
android:
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginTop="5dp"
android:text="@string/login_label_username"
/>
<EditText
android:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="@string/login_username_hint"
android:layout_below="@id/login_user_input"
android:singleLine="true"
android:inputType="text"/>
<!-- 密碼 text -->
<TextView
android:
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/username_edit"
android:layout_marginTop="3dp"
android:text="@string/login_label_password"
/>
<EditText
android:
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/login_password_input"
android:password="true"
android:singleLine="true"
android:inputType="textPassword" />
<!-- 登錄button -->
<Button
android:
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/password_edit"
android:layout_alignRight="@id/password_edit"
android:text="@string/login_label_signin"
android:background="@drawable/blue_button" />
</RelativeLayout>

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView android:
android:text="@string/login_register_link"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="15dp"
android:textColor="#888"
android:textColorLink="#FF0066CC" />
<ImageView android:
android:src="@drawable/cat"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="25dp"
android:layout_marginLeft="10dp"
android:layout_marginBottom="25dp" />
<ImageView android:src="@drawable/logo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/miniTwitter_logo"
android:layout_alignBottom="@id/miniTwitter_logo"
android:paddingBottom="8dp"/>
</RelativeLayout>
</LinearLayout>

3. android系統的優缺點

Android優點:1.開源特性,得到眾多廠商的支持由於Android的開源特性,所以得到了眾多的廠商的支持,除了諾基亞和蘋果之外,其他的手機大牌廠商悉數支持Android系統,通過廠商的努力開發,Android的界面非常豐富,可選擇性很強。
▲定製界面豐富是Android的特點2.軟體發展很快Android雖然只有隻有兩年的發展,但是也得到了開發者的青睞,目前Android Market的軟體數量已經達到了10W多,對於一個新生的系統已經非常不錯。
▲Android Market發展很快,還很多免費軟體3.界面UI、系統優化不錯Android來源於Google,目前來看,Android的UI設計和系統優化還是非常不錯的,是除了iOS之外最受好評的系統,而且Android對於系統的要求並不苛刻,所以很多機型可以流暢運行。
▲Android界面設計還是很優秀Android面臨的煩惱:1.版本過多,升級過快由於Android的開放式特點,所以很多的廠商推出了定製的界面,如HTC Sense、MOTO Blur、三星Touchwiz等等,這提供給客戶豐富選擇的同時,也造成版本過多,升級較慢的特點,因為Google的升級速度很快,而廠商要推出新固件需要經過深度的研發,就造成升級滯後的問題,比如聯想樂Phone還運行在1.6系統,里程碑也一直沒有升級到2.2......
▲Android1.6還是很多手機採用2.用戶體驗不一致由於Android在不同的廠商,不同的配置下均有機型,所以造成有些機型運行Android系統流暢,有些則是緩慢卡頓等問題,就如《憤怒的小鳥》的開發商就表示,這款人氣游戲在很多的Android機型上運行得不是很理想,不過就像我們用的PC也有的好有的壞一樣,這倒是不必太多顧慮這個問題。:總的來看,Android還是目前最具潛力的智能系統,就從市場佔有率來看,Android在2011年可能會取代Symbian成為全球第一大的智能系統,雖然存在版本混亂的問題,但是就像PC上的Windows一樣,用戶可以按照自己的需要來選擇,但就目前來看,Android要向iOS學習的地方還是不少,比如觸摸屏的體驗和應用軟體的數量和質量等等。

熱點內容
圖靈姬編程 發布:2024-11-25 00:52:40 瀏覽:314
編譯好的程序不閃一下就沒了 發布:2024-11-25 00:48:51 瀏覽:549
ts設置編譯輸出目錄 發布:2024-11-25 00:43:28 瀏覽:448
元神比較好的雲伺服器 發布:2024-11-25 00:43:20 瀏覽:190
草人御魂怎麼配置 發布:2024-11-25 00:30:37 瀏覽:738
ftp上傳流程 發布:2024-11-25 00:18:27 瀏覽:90
安卓服光遇什麼時候上線的 發布:2024-11-25 00:13:22 瀏覽:919
80萬能買到酷路澤的什麼配置 發布:2024-11-25 00:10:57 瀏覽:337
新浪微博中如何修改密碼 發布:2024-11-25 00:10:52 瀏覽:101
iphone訪問pc 發布:2024-11-24 23:53:43 瀏覽:481