首页 > 移动平台 > 详细

Android自定义用户控件简单范例(一)

时间:2014-07-18 23:24:41      阅读:411      评论:0      收藏:0      [点我收藏+]

一款优秀的移动应用需要具有自己独特统一的风格,通常情况下UI设计师会根据产品需求和使用人群的特点,设计整体的风格,界面的元素和控件的互效果。而原生态的Android控件为开发人员提供的是最基本的积木元素,如果要准确地传递统一的视觉效果和交互体验,对控件的自定义使用是非常有必要的。

这篇文章通过一个简单的从Java后台程序中进行创建的示例来说明Android自定义控件的运行原理。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:orientation="vertical" >
    
    <!-- Display a button -->
    <ImageView
        android:id="@+id/icon_part"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center" />

    <TextView
        android:id="@+id/text_part"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:textColor="#fff"/>

</LinearLayout>

Android自定义用户控件简单范例(一),布布扣,bubuko.com

Android自定义用户控件简单范例(一)

原文:http://www.cnblogs.com/yxy8023ustc/p/3849999.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!