`
absolute
  • 浏览: 190267 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

Android UI设计技巧

 
阅读更多

 

1.使用include标签实现包含共享UI设计

(1)创建新的布局文件 title_layout.xml,里面包含共享内容的布局

(2)layout属性:其对应抽取出来的共享的布局内容

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:orientation="vertical"
   android:background="@drawable/share_background"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent">
   <include layout="@layout/title_layout"></include>
</LinearLayout>

 

 

 

 

2.使用shapes实现渐变效果

(1)创建新的drawable的xml文件

 

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> 
   <gradient android:startColor="#FFFF0000" android:endColor="#80FF00FF" 
            android:angle="270"/> 
   <padding android:left="50dp" android:top="20dp" 
            android:right="7dp" android:bottom="7dp" /> 
   <corners android:radius="8dp" /> 
</shape>

 

   gradient 产生颜色渐变 android:angle 从哪个角度开始变 貌似只有90的整数倍可以

 

   android:shape="rectangle" 默认的也是长方形

   corners表示是有半径

  (还有很多其它参数)

(2)设置android:background属性

 

android:background="@drawable/share_background"
 

 

 

 

3.灵活使用styles.xml

(1)在res/values目录下新建一个style.xml,增加<resource>根节点

 

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <style name="SpecialText" parent="@style/Text">
   <item name="android:textSize">18sp</item>
   <item name="android:textColor">#008</item>
 </style>

 <style name="button_style">
    <item name="android:textStyle">bold</item>
    <item name="android:textColor">#FFFFFFFF</item>
    <item name="android:layout_width">100.0dip</item>
 </style>
</resources>

 

(2)设置style属性

 

<EditText id="@+id/text1"
 style="@style/SpecialText"
 android:layout_width="fill_parent"
 android:layout_height="wrap_content"
 android:text="Hello, World!" />
 

 

现在这个EditText组件的所表现出来的风格就为我们在上边的XML文件中所定义的那样。

(补充:主题(theme)和style一样,也是在style.xml内申明,也是同样方式引用,不同的是通过在AndroidManifest.xml中定义的<application>和<activity>元素中使用到整个程序或者某个activity,但是主题不能用到某一个单独的view里。)

 

 

4.自定义按钮显示效果

(1)在drawable中创建新的xml文件--mybutton.xml文件

 

<item android:state_window_focused="false" android:drawable="@color/transparent" /> 

    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. 注意这句话--> 

    <item android:state_focused="true" android:state_enabled="false" 
        android:state_pressed="true" 
        android:drawable="@drawable/selector_background_disabled" /> 
    <item android:state_focused="true" android:state_enabled="false" 
        android:drawable="@drawable/lselector_background_disabled" /> 

    <item android:state_focused="true" android:state_pressed="true" 
        android:drawable="@drawable/selector_background_transition" /> 
    <item android:state_focused="false" android:state_pressed="true" 
        android:drawable="@drawable/selector_background_transition" /> 

    <item android:state_focused="true" 
        android:drawable="@drawable/selector_background_focus" /> 

</selector> 
 

 

 

(2)在构造的layout中引用这个xml

<ImageButton 
android:id="@+id/ImageButton01" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:background="@drawable/mybutton"> 
</ImageButton> 
 

转自:http://www.cnblogs.com/playing/archive/2011/05/17/2048287.html

 

分享到:
评论

相关推荐

    android UI设计技巧

    "Android UI设计技巧"主要关注如何高效、便捷地创建和管理应用程序的用户界面。描述中提到的“不用再繁琐的写布局文件”,指的是利用特定的设计工具来简化这一过程。在这个主题下,我们将探讨一些关键知识点,包括...

    《谷歌Android UI设计技巧》共五部分

    以下将根据提供的文件名,详细解析《谷歌Android UI设计技巧》的五部分内容。 **第一部分:该做的和不该做的** 这一部分主要讲解了Android UI设计的基本原则和避免的常见错误。开发者应该遵循平台一致性,确保应用...

    AndroidUI设计技巧.rar

    这份名为"Android UI设计技巧"的压缩包包含了深入探讨这一主题的PDF文档,旨在帮助开发者和设计师提升他们的Android应用界面设计能力。以下是一些关键的Android UI设计知识点: 1. **设计原则**:Android UI设计应...

    Android开发—AndroidUI设计技巧.pdf

    Android UI 设计技巧 Android UI 设计技巧是 Android 开发中的一个重要方面,它直接影响到用户体验。本文将分享 Android 中 UI 设计的一些技巧,包括按钮的 UI 设计和 ListView 以及 GridView 的 UI 设计。 按钮的...

    android UI 设计技巧

    对于UI开发设计非常有用的技术文档, 文档时google 工程师总结 可以看看 ,

    谷歌Android+UI设计技巧

    这篇关于“谷歌Android+UI设计技巧”的资料共分为五个部分,旨在帮助开发者和设计师掌握提高Android应用界面美观度和交互性的方法。以下是对这五个部分的详细解读: **第一部分:基础布局与组件** 这部分主要介绍了...

    《Android UI设计》PDF

    系统讲解了从事Android UI设计必须要掌握的Android平台的主要技术和特性,全面总结了Android UI的设计原理、设计理念和设计模式,并通过一个综合的案例项目阐述Android UI设计的方法和技巧。 《Android UI设计》特色...

    androidUI设计实践

    在Android平台上进行UI设计...总之,Android UI设计实践涵盖了多个方面,从基础的设计原则到高级的交互技巧,都需要开发者深入理解和灵活运用。通过不断学习和实践,才能打造出引人入胜、用户体验优秀的Android应用。

    Android之UI设计技巧.docx

    ### Android UI设计技巧详解 #### 一、页面设计 ##### 1.1 TabHost与TabActivity的使用 在Android开发中,**TabHost** 和 **TabActivity** 是用来实现标签式导航的重要工具,它们能够帮助开发者创建出具有多个...

    android的ui设计技巧

    总的来说,Android的UI设计技巧涵盖广泛,从遵循设计规范到创建响应式布局,再到注重细节如颜色、字体和动画。通过持续学习和实践,开发者和设计师可以打造出引人入胜且易于使用的Android应用界面。

    Android UI设计工具

    总结,Android UI设计涉及多种工具和技巧,包括使用Android Studio内置的设计工具,以及第三方的Adobe XD、Sketch和Figma等。理解并熟练掌握这些工具,遵循设计原则,进行有效的资源管理和测试,将有助于打造出优秀...

    Android_UI设计指导

    Google在其官方开发者博客中发布的“Android User Interface Design Tips”(Android UI设计技巧)幻灯片,为开发者提供了宝贵的指南。本篇文章将详细介绍该幻灯片中的核心内容,并结合实际案例进行解析。 #### 二、...

    QQUI android QQUI

    对于想要学习和提升Android UI设计技巧的人来说,QQUI是一个值得参考和研究的实例。 首先,我们来看看QQUI为何能被称为“好看的界面”。在UI设计中,美观不仅体现在色彩搭配上,还在于布局的合理性、图标的设计以及...

    androidUI设计与网络开发

    在Android平台上,UI设计与网络开发是两个至关重要的领域,它们共同构成了用户与应用程序交互的基础。本主题将深入探讨这两个方面,旨在提供实用的知识和技巧,帮助开发者提升应用的用户体验和功能性能。 首先,让...

    Android_系统UI设计规则

    1. **Android UI设计技巧**: - **不该做什么**: - 避免复制其他平台的UI设计,应体现Android特色。 - 少用模态对话框,以免打断用户流程。 - 不使用px单位,应使用dp或sp来保证尺寸适配。 - 避免固定绝对定位...

    AndroidUI设计

    本文将深入探讨几个关键的Android UI设计技巧,包括TabHost的使用、ListView美化、控件美化、自定义组件以及自定义属性和图形。 首先,让我们详细讨论TabHost的使用。TabHost是Android提供的一种用于创建多标签界面...

Global site tag (gtag.js) - Google Analytics