android UI
A015-布局之LinearLayout good 巫山老妖
Android UI开发: 横向ListView(HorizontalListView)及一个简单相册的完整实现 (附源码下载)
Android:控件GridView的使用
Android:将View的内容映射成Bitmap转图片导出
android中恶心的getDrawingCache
Android XML shape 标签使用详解
ShapeDrawable和GradientDrawable的简单使用
TabLayout用法详解及自定义样式
1、我们只有在button2使用了layout_weight属性,并赋值为1;但是button1和button2并没有使用这个属性,根据API可以知道,他们的layout_weight属性等于0。
2、LinearLayout如果显式包含layout_weight属性时,会measure两次;第一次将正常计算三个button的宽高,第二次将结合layout_weight的值分配剩余的空间。
通俗点来总结:Android系统先按照你设置的3个Button高度Layout_height=wrap_content,给你分配好他们3个的高度,然后会把剩下来的屏幕空间全部赋给Button2,因为只有他的权重值是1,这也是为什么Button2占了那么大的一块空间。
在layout_width设置为match_parent的时候,layout_weight所代表的是你的控件要优先尽可能的大,但这个大是有限度的,即match_parent。
在layout_width设置为wrap_content的时候,layout_weight所代表的是你的控件要优先尽可能的小,但这个大是有限度的,即wrap_content。
android:layout_weight的真实含义
android:layout_weight的真实含义是:一旦View设置了该属性(假设有效的情况下),那么该 View的宽度等于原有宽度(android:layout_width)加上剩余空间的占比!
Android百分比布局之layout_weight属性
android布局--Android fill_parent、wrap_content和match_parent的区别
三个属性都用来适应视图的水平或垂直大小,一个以视图的内容或尺寸为基础的布局比精确地指定视图范围更加方便。
1)fill_parent
设置一个构件的布局为fill_parent将强制性地使构件扩展,以填充布局单元内尽可能多的空间。这跟Windows控件的dockstyle属性大体一致。设置一个顶部布局或控件为fill_parent将强制性让它布满整个屏幕。
2) wrap_content
设置一个视图的尺寸为wrap_content将强制性地使视图扩展以显示全部内容。以TextView和ImageView控件为例,设置为wrap_content将完整显示其内部的文本和图像。布局元素将根据内容更改大小。设置一个视图的尺寸为wrap_content大体等同于设置Windows控件的Autosize属性为True。
3)match_parent
Android2.2中match_parent和fill_parent是一个意思 .两个参数意思一样,match_parent更贴切,于是从2.2开始两个词都可以用。那么如果考虑低版本的使用情况你就需要用fill_parent了
Android系统自带样式(@android:style/) (转)
Android知识点剖析系列:深入了解layout_weight属性
ImageView的属性android:scaleType作用
android:scaleType="fitXY"
《第一行代码》作者郭霖:从Java程序员到Android开发者的第一步(图灵访谈)
Android LayoutInflater原理分析,带你一步步深入了解View(一) good 第一行代码作者
Android视图绘制流程完全解析,带你一步步深入了解View(二)
onMeasure()、onLayout()和onDraw()
Android自定义View(CustomCalendar-定制日历控件)
Android:focusable="true"
android:focusableInTouchMode="true"
2.代码中动态设置:
editText.setFocusable(true);//设置获取焦点
但实际应用中setFocusable(true)方法失效!不知道什么鬼。
后来查文档,editTextview.requestFocus();//代码动态设置焦点(实现)
Android代码设置Shape,corners,Gradient good
Android中日历控件的使用 系统日历控件
Android开发之日历控件实现 双向按钮
Android 一个日历控件的实现代码
Android 多种简单的弹出框样式设置 good
java的Date类的getYear(),getMonth过时方法的替换
推荐安卓开发神器–23code客户端(里面有各种UI特效和android代码库实例)
findViewById在Activity和View中的区别 good
View contentView = getLayoutInflater().inflate(R.layout.popup, null);
android button属性
Android ComboBox -- Spinner基础使用
Android ComboBox
该控件主要实现方式为Button 从写 + PopupWindow ListView 组合
Android Button有默认padding值的元凶!!!
public Button(Context context, AttributeSet attrs) { this(context, attrs, com.android.internal.R.attr.buttonStyle); }
AS问题解决系列2—Resources中getDrawable(int)过时
Android如何制作漂亮的自适布局的键盘
xml 技巧
Android EditText 改变边框颜色
给EditText设置边框
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item> <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <solid android:color="#EFEFEF"/> <corners android:radius="3dip" /> <stroke android:width="0.5px" android:color="#505050"/> </shape> </item> </layer-list>
自定义键盘代码
Android 获取TextView焦点后自动弹出软键盘
有时候我们跳转到某些页面时,希望能马上获取特定TextView的焦点并弹出软键盘
editText.setFocusable(true); editText.requestFocus(); InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(0,InputMethodManager.HIDE_NOT_ALWAYS);
[android]自定义软键盘KeyBoardView的基本实现