码迷,mamicode.com
首页 >  
搜索关键字:layout_width    ( 981个结果
ImageButton与Button
1.Button控件Butotn控件,主要用来实现一些命令操作,通过注册监听事件来实现。首先需要在xml文档中放入一个button按钮。1 Button可以在xml 中设置该控件的相关属性,包括layout_width等。后台实现的代码为 1 public class MainActivit...
分类:其他好文   时间:2014-07-10 12:03:44    阅读次数:178
(Android 基础知识review)打电话
1、main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"...
分类:移动开发   时间:2014-07-08 20:00:21    阅读次数:277
关于ListView的Item的一些定制化需求
一些流行的应用的ListView的Item类似下图: ListView的Divider没有没有覆盖到图片 可以这种来实现,先定义ListView在Layout中: <ListView android:layout_width="match_parent" android:layout_height="match_parent"...
分类:其他好文   时间:2014-07-08 14:58:12    阅读次数:245
android editText 软键盘enter键图标的设置
<EditText android:layout_marginTop="10dp" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="输入单位" android:layout_marginLef...
分类:移动开发   时间:2014-07-06 12:06:32    阅读次数:296
android Title滑块动画实现(适合新闻客户端多种栏目的展示)
先上效果图,选择不同的模块,滑动会通过动画形式滑过去,这种适合新闻客户端多种栏目的展示: 这么写Layout: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="...
分类:移动开发   时间:2014-07-01 15:43:33    阅读次数:198
android如何写一个自定义的dialog可以在Title的位置弹出来
先上效果图: Title的Layout为: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
分类:移动开发   时间:2014-07-01 11:24:30    阅读次数:289
android如何写一个自定义的dialog可以在Title的位置弹出来
先上效果图: Title的Layout为: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
分类:移动开发   时间:2014-06-30 18:44:18    阅读次数:269
语音输入和文字输入动画切换
随着语音的快速普及,很多应用都开始增加语音输入功能。下面是一个简单的语音和文字输入的动画切换: 布局文件: <ViewFlipper android:id="@+id/viewFlipper1" android:layout_width="fill_parent" android:layout_height="wrap_content" ...
分类:其他好文   时间:2014-06-26 14:27:41    阅读次数:145
Android常用布局类整理(一)
Android常用布局类整理  最近又回头做了一下android的项目,发觉越来越不从心,很多东西都忘了,简单的页面布局也很多写不出来,首先还是先整理一下一些会混淆的概念先 layout_width/layout_height的两种不同的方式 ① wrap_content能包裹其中的内容即可     ② fill_parent/match_parent 填满父视图的空间   Lin...
分类:移动开发   时间:2014-06-26 07:44:46    阅读次数:337
如何实现底部工具栏的位置在屏幕底部
一个垂直方向的LinearLayout,包含两个View。下面一个View(工具栏)固定在屏幕底部,上面的View占据剩余的屏幕空间。<LinearLayoutandroid:orientation="vertical"android:id="@+id/vertical_layout"android:layout_width="match_parent"android:layout_height="match_paren..
分类:其他好文   时间:2014-06-24 16:57:06    阅读次数:199
981条   上一页 1 ... 94 95 96 97 98 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!