XML布局技巧
postInvalidate(); 界面刷新
一个list元素可能默认为48px
android:visibility="invisible"> 设置组件显示visible 不显示invisible 消失gone
android:background="@null" 设置组件无背景
android:layout_gravity="right|center_vertical" 向右并垂直居中
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableTop="@drawable/star" 将图片设置在按钮的上方
android:text="按钮1"
/>
<include
android:id="@+id/vip_include_top"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
layout="@layout/top_1" /> 包含一个layout
<SlidingDrawer
android:id="@+id/sliding"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:content="@+id/allApps"
android:handle="@+id/imageViewIcon" a
ndroid:orientation="vertical"
> 抽屉式设计必须设置content(类容控件) handle(把手类容控件)
android:layout_alignParentBottom="true" 总是在父元素的底部
android:scrollbars="none" 不要滚动条
android:gravity: 是对view控件本身来说的,是用来设置view本身的文本应该显示在view的什么位置,默认值是左侧
android:layout_gravity:是相对于包含改元素的父元素来说的,设置该元素在父元素的什么位置
<Button android:layout_width="120dip"
android:layout_height="wrap_content"
android:text="切换程序"
style="@android:style/ButtonBar" 设置按钮为按钮条风格
android:id="@+id/btn7"
android:layout_weight="1" />
requestWindowFeature(Window.FEATURE_NO_TITLE); 设置无标题
在application 标签中添加android:theme=”@android:style/Theme.NoTitleBar” 去掉所有Activity界面的标题栏
修改AndroidManifest.xml
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); 设置全屏
<resources>
<style name="tab_btn">
<item name="android:textAppearance">@style/tab_item_text_style</item>
<item name="android:gravity">center_horizontal</item>
<item name="android:background">@drawable/trans</item>
<item name="android:layout_width">0.0dip</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:button">@null</item>
<item name="android:layout_weight">1.0</item> 自定义按钮的Style属性
</style>
</resources>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:drawable="@drawable/input_normal" />
<item android:state_pressed="true" android:drawable="@drawable/input_normal" />
<item android:state_focused="true" android:drawable="@drawable/input_over" />
</selector> 定义组件得到焦点,点击,激活的状态
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<gradient
android:startColor="#FFFFFF"
android:endColor="#000000"
android:angle="270" /> </shape> 设置Drawable渐变
setBackgroundResource(R.drawable.bg); 调用
//设置 Gallery样式在BaseAdapter的getView中
TypedArray typedArray = context.obtainStyledAttributes(R.styleable.Gallery);
imageView.setBackgroundResource(typedArray.getResourceId(R.styleable.Gallery_android_galleryItemBackground, 0));
return imageView;
android:spacing="10dp" //Gallery间隔
第一类:属性值为true或false
android:layout_centerHrizontal? 水平居中
android:layout_centerVertical?? 垂直居中
android:layout_centerInparent???相对于父元素完全居中
android:layout_alignParentBottom 贴紧父元素的下边缘
android:layout_alignParentLeft?? 贴紧父元素的左边缘
android:layout_alignParentRight? 贴紧父元素的右边缘
android:layout_alignParentTop??? 贴紧父元素的上边缘
android:layout_alignWithParentIfMissing? 如果对应的兄弟元素找不到的话就以父元素做参照物
第二类:属性值必须为id的引用名”
android:layout_below????? 在某元素的下方
android:layout_above????? 在某元素的的上方
android:layout_toLeftOf?? 在某元素的左边
android:layout_toRightOf? 在某元素的右边
android:layout_alignTop?? 本元素的上边缘和某元素的的上边缘对齐
android:layout_alignL
补充:移动开发 , Android ,