- 浏览: 264143 次
- 性别:
- 来自: 广州
文章分类
最新评论
-
zhanght327:
现在这个办法不好使了。。。火狐 谷歌 IE 360 迅雷 都不 ...
Aptana插件版Zip包下载方法 -
admins:
一般重启eclipse 与虚拟机就好了。或者看看logcat设 ...
Logcat问题的解决方法 -
CoolYJCK:
这个zip包用不了~~
Aptana插件版Zip包下载方法 -
crazysumer:
嗯,没有prepare报错了
Android的MediaPlayer错误 -
extjavaee:
问题就在于在layout中的决定ListView或 ...
ListView与Adapter使用要点
LayoutParams
java.lang.Object
<-- android.view.ViewGroup.LayoutParams
android:layout_height
Specifies the basic height of the view.
android:layout_width
Specifies the basic width of the view.
MarginLayoutParams
java.lang.Object
<-- android.view.ViewGroup.LayoutParams
<-- android.view.ViewGroup.MarginLayoutParams
android:layout_marginBottom
Specifies extra space on the bottom side of this view.
android:layout_marginLeft
Specifies extra space on the left side of this view.
android:layout_marginRight
Specifies extra space on the right side of this view.
android:layout_marginTop
Specifies extra space on the top side of this view.
FrameLayout
java.lang.Object
<-- android.view.ViewGroup.LayoutParams
<-- android.view.ViewGroup.MarginLayoutParams
<-- android.widget.FrameLayout.LayoutParams
android:layout_gravity
Standard gravity constant that a child can supply to its parent
注意区别android:gravity, 这个属性是android.view.Gravity,
FrameLayout.LayoutParams, LinearLayout.LayoutParams和各种常见的View都有 android:gravity ;注意RelativeLayout.LayoutParams没有这个属性。
LinearLayout
java.lang.Object
<-- android.view.ViewGroup.LayoutParams
<-- android.view.ViewGroup.MarginLayoutParams
<-- android.widget.LinearLayout.LayoutParams
android:layout_gravity
Standard gravity constant that a child can supply to its parent
android:layout_weight
RelativeLayout
java.lang.Object
<-- android.view.ViewGroup.LayoutParams
<-- android.view.ViewGroup.MarginLayoutParams
<-- android.widget.RelativeLayout.LayoutParams
android:layout_above
Positions the bottom edge of this view above the given anchor view ID.
android:layout_alignBaseline
Positions the baseline of this view on the baseline of the given anchor view ID.
android:layout_alignBottom
Makes the bottom edge of this view match the bottom edge of the given anchor view ID.
android:layout_alignLeft
Makes the left edge of this view match the left edge of the given anchor view ID.
android:layout_alignParentBottom
If true, makes the bottom edge of this view match the bottom edge of the parent.
android:layout_alignParentLeft
If true, makes the left edge of this view match the left edge of the parent.
android:layout_alignParentRight
If true, makes the right edge of this view match the right edge of the parent.
android:layout_alignParentTop
If true, makes the top edge of this view match the top edge of the parent.
android:layout_alignRight
Makes the right edge of this view match the right edge of the given anchor view ID.
android:layout_alignTop
Makes the top edge of this view match the top edge of the given anchor view ID.
android:layout_alignWithParentIfMissing
If set to true, the parent will be used as the anchor when the anchor cannot be be found for layout_toLeftOf, layout_toRightOf, etc.
android:layout_below
Positions the top edge of this view below the given anchor view ID.
android:layout_centerHorizontal
If true, centers this child horizontally within its parent.
android:layout_centerInParent
If true, centers this child horizontally and vertically within its parent.
android:layout_centerVertical
If true, centers this child vertically within its parent.
android:layout_toLeftOf
Positions the right edge of this view to the left of the given anchor view ID.
android:layout_toRightOf
Positions the left edge of this view to the right of the given anchor view ID.
TableLayout
java.lang.Object
<-- android.view.ViewGroup.LayoutParams
<-- android.view.ViewGroup.MarginLayoutParams
<-- android.widget.LinearLayout.LayoutParams
<-- android.widget.TableLayout.LayoutParams
AbsoluteLayout
java.lang.Object
<-- android.view.ViewGroup.LayoutParams
<-- android.widget.AbsoluteLayout.LayoutParams
java.lang.Object
<-- android.R.styleable
<-- public static final int[] AbsoluteLayout_Layout
android:layout_x
android:layout_y
Note: AbsoluteLayout is deprecated. Use other layouts instead.
总结
1. 界面的原点(0, 0)是除去status bar和title bar之后剩下的区域。 如果使用了全屏,不显示状态栏,不显示标题栏这样的主题后,区域的原点位置会相应改变。
2. FrameLayout的widget中使用类似android:layout_marginLeft="65px"这样的属性,一定要加上android:layout_gravity,否则margin无效。还要注意FrameLayout的android:layout_width和android:layout_height对layout_gravity的影响。
3. 使用布局属性一定要分清谁是parent,parent用的是什么layout,layout_width和layout_height的值。
4. 不同的布局属性也可以实现相同的功能。例如layout_gravity="center"和android:layout_centerInParent ="true"。
5. Eclipse的Android开发工具插件ADT里面有一个所见即所得的开发UI的功能。利用Graphical Layout可以预览的效果。但是,有时会遇到以下问题:
error!
UnsupportedOperationException: null
一般来说,这是因为所选择的Android版本不支持布局设置或者Android SDK不能很好的支持该layout的显示。可以尝试换其他Android版本或者看看该版本的SDK有没有更新。
发表评论
-
电脑能上网,Android模拟器不能上网的问题
2013-04-23 10:34 7103电脑能上网,Android模拟器不能上网 一 ... -
Android SDK相关问题
2012-11-15 10:57 21061. Android SDK Manager 卡在Fet ... -
Android环境
2012-07-02 10:16 845developer : developer.android.c ... -
xxx is not translated in yyy, zzz 的解决方法
2012-05-12 19:52 29501在Android SDK Tool r19之后, Export ... -
Android MAT
2012-03-01 11:23 3301安装MAT 生成hprof文件: DDMS-D ... -
分辨率不同的兼容要点
2011-11-15 12:55 0分辨率不同的兼容要点1. 换算比率l : m : h = 0. ... -
Android模拟器快捷键
2011-11-15 00:19 1061F1/PgUp Menu key 菜单键 ... -
Android中shared_prefs文件夹位置
2011-11-13 19:01 15028Android中shared_prefs文件夹位置 一 ... -
Android Device中添加busybox
2011-11-10 23:28 7521Android自带的toolbox(位于/system/bin ... -
Android adb shell
2011-11-04 23:28 11391、获取模拟器/设备列表 adb devices 2 ... -
Android SurfaceView
2011-10-31 12:01 1797最近自己做了个指南针应用,用到了SurfaceView。总结下 ... -
Logcat问题的解决方法
2011-09-28 09:40 5437Logcat在Android开发中是相当有用的。 但是,Lo ... -
Android中的数据存储与传输
2011-09-27 11:16 1125以下是工作中的开发总结,如有不妥,望请指出,谢谢! A ... -
ListView与Adapter使用要点
2011-08-12 14:44 14488项目用到ListView,由于要用到 ImageView ... -
Android的MediaPlayer错误
2011-07-22 12:43 24167在使用MediaPlayer的时候,要注意几个Listener ... -
Activity的setContentView与findViewById
2011-07-08 09:54 38741. Activity.setContentView(int ... -
Android的SeekBar
2011-07-07 14:52 37286使用SeekBar的时候,经常遇到的问题有如下: 1. se ... -
Android要点
2011-05-23 22:48 0控制层 Activity Intent and Inten ... -
Android Layout 相关
2011-05-23 11:38 9941 假如在同一个layout文件中有2个或以上的view使用相 ... -
Android界面元素
2011-05-17 11:15 8701 界面元素的层次 View与GroupView View ...
相关推荐
在Android开发中,实现桌面悬浮窗(又称为悬浮按钮或悬浮布局)是一项常见的需求,尤其在工具类应用中,如360手机助手等。360桌面悬浮框的实现方式,可以为用户提供便捷的操作入口,增强应用的交互性。本篇文章将...
总结来说,实现Android浮动窗体主要涉及`WindowManager`的使用、自定义布局的设计、`LayoutParams`的配置以及触摸事件的处理。理解并熟练掌握这些知识点,对于开发具有悬浮窗功能的Android应用至关重要。
在Android开发中,动态生成View是一项常见的需求,特别是在创建复杂布局或者需要根据数据动态调整界面结构时。这个例子,"android 一个关于动态生成的例子",着重讲解如何在代码中创建并添加View到LinearLayout中,...
总结: 通过以上三步,我们成功实现了Android中的`StickyDemo`,即在用户滚动列表时,悬浮控件能够固定在屏幕顶部。这种效果在实际应用中非常常见,能提升用户体验,特别是在内容丰富的界面中。了解并掌握这一技术...
这些属性主要包括`layout_width`、`layout_height`、`android:layout_margin`、`android:layout_gravity`等。在XML布局文件中,我们可以直接设置这些属性;而在代码中,我们需要使用`LayoutParams`来动态修改。 ...
在Android应用开发中,自定义对话框(Dialog)是一种常见的用户交互方式,特别是在涉及到支付功能时,为了提供更好的用户体验,通常会使用底部弹窗来显示支付选项。本篇将详细介绍如何在Android中实现一个自定义的...
它们常见于各种工具类应用,如屏幕录制软件、音乐播放器、即时通讯应用等。下面将详细介绍创建和管理Android悬浮窗的相关知识点。 ### 1. 许可权限 在AndroidManifest.xml文件中,添加悬浮窗所需的权限: ```xml `...
总结来说,安卓悬浮窗的实现涉及权限请求、`WindowManager`服务、`LayoutParams`设置以及自定义View的设计。通过分析和学习提供的“安卓悬浮窗相关-一个悬浮框的demo.rar”,你可以掌握创建、管理和优化悬浮窗的各项...
总结,自定义Dialog样式、大小和位置是提升应用用户体验的重要手段。通过创建自定义布局、设置Dialog类以及调整窗口属性,我们可以构建出符合设计需求的个性化Dialog。在实际开发中,要灵活运用这些技巧,确保Dialog...
这类功能常见于通知、快捷操作、辅助工具等应用场景。本篇文章将深入探讨如何实现一个可拖动的Android全局悬浮窗口。 首先,要创建全局悬浮窗口,我们需要使用到`WindowManager`服务。`WindowManager`是Android系统...
在Android开发中,创建自定义对话框(Dialog)是一种常见的需求,可以提供用户与应用交互的特殊界面。本文将详细探讨如何实现一个带有三角形指示箭头的对话框,即"带三角的dialog弹出框",并分享相关代码实现。 ...
Android开发中Launcher3常见默认配置修改方法总结 Android开发中,Launcher3是Android系统中一个重要的组件,它作为第一个启动的应用程序,负责展示应用列表和快捷方式、小部件等。 Launcher3的默认配置可以进行...
在Android开发中,Dialog是一种非常常见的用户交互组件,它用于显示一些临时信息或者与用户进行简单的交互。然而,系统默认的Dialog样式可能无法满足所有设计需求,这时我们就需要自定义Dialog来实现更个性化的界面...
总结来说,控制Android Dialog的大小、位置和透明度主要涉及到自定义布局、`WindowManager.LayoutParams`的使用以及对Dialog窗口属性的调整。通过灵活运用这些技巧,你可以创建出更加符合应用需求的Dialog,提升用户...
在XML布局中,每个元素(View)都有相应的属性,如`android:layout_width`和`android:layout_height`,用来设置元素的尺寸,以及`android:text`等属性来设置内容。 在Android中,View是基本的用户界面元素,它包含...
这种功能通常在一些需要用户自定义布局或者游戏场景中比较常见。下面将详细介绍如何在Android中实现一个可拖动的ImageButton。 首先,我们需要在布局XML文件中定义一个ImageButton。基本的定义方式如下: ```xml ...
在安卓开发中,桌面悬浮窗(Float Window)是一种常见的功能,它可以实现类似360手机卫士或淘宝手机助手那样的实时显示信息或者辅助操作的效果。本教程将通过一个名为"FloatWindowDemo"的项目,深入讲解如何在...
总结,"Android应用源码之悬浮窗 监视内容.zip"提供了实现Android悬浮窗功能的源代码,可以用来学习和理解悬浮窗的实现方式以及其在监视内容方面的应用。但在实际开发中,应确保遵循合法、合规的原则,尊重用户隐私...