Andorid UI设计技巧

本文介绍了四种提升UI设计的方法:使用include标签实现布局共享,利用shapes创建渐变效果,通过styles.xml定制样式,以及自定义按钮显示状态。这些技巧有助于提高应用程序的一致性和美观度。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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>

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>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值