码迷,mamicode.com
首页 >  
搜索关键字:match_parent    ( 614个结果
王立平--include在Android中的应用
一个布局中包含另一个布局 1.在layout下定义activity_other.xml布局 2.代码中的包含如下:     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_par...
分类:移动开发   时间:2014-09-30 11:45:39    阅读次数:184
Android 浏览网页
1、编写界面<WebViewandroid:id="@+id/webview"android:layout_width="match_parent"android:layout_height="match_parent"/>2、申请权限<uses-permissionandroid:name="android.permission.INTERNET"/>3、MainActivity.javapackagecom.malakana.webview;importand..
分类:移动开发   时间:2014-09-26 01:45:48    阅读次数:431
13、Android之ListView学习·
1、XML文件中添加ListView (1)XML布局文件 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" ...
分类:移动开发   时间:2014-09-25 00:27:37    阅读次数:315
类似微信5.x朋友圈的弹出框评论功能
实现对一个主题评论并显示评论列表,首先想到的是需要使用ListView控件, 下面是layout下的xml布局文件: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_heig...
分类:微信   时间:2014-09-23 18:39:55    阅读次数:408
match_parent和fill_parent的有什么区别?
最近在搞 andorid 的时候 会很纠结 match_parent和fill_parent 有什么 区别?     match_parent和fill_parent  都是填充 父控件,android2.2(API8)之前都是用 fill_parent!      API8 之后的新版本都是用 match_parent;     wrap_content 大家都知道 就是 ...
分类:其他好文   时间:2014-09-19 12:03:45    阅读次数:168
Android 动态添加图片 换行
最近在项目中用到动态添加图片,然后换行的实现。刚开始想用GridView,但是没用,什么原因到是忘了。下面我记录一下我的实现方式。 看代码xml: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" androi...
分类:移动开发   时间:2014-09-16 15:57:50    阅读次数:345
Android开发之杂记(2)
1,Android FrameLayout的android:foreground属性可以设置单击时的前景色 <FrameLayout android:id="@+id/poster_contanier" android:layout_width="match_parent" android:layout_height="match_pare...
分类:移动开发   时间:2014-09-16 12:42:40    阅读次数:243
竖向ScrollView+横向ScrollView+ListView,实现listView可以左右上下滑动
竖向ScrollView中嵌套横向ScrollView,横向ScrollView嵌套ListView。具体代码见附件。<ScrollViewandroid:layout_width="match_parent"android:layout_height="match_parent"><RelativeLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content..
分类:其他好文   时间:2014-09-13 03:02:25    阅读次数:358
【android】解决设置ImageView的scaletype为centerCrop后padding不起作用的办法
今天捣腾ImageView的时候发现padding属性竟然不起作用,折腾一番后才知道原来跟我设置scaletype为centerCrop有关,要想两者同时作用,只需加上android:cropToPadding="true"即可。如下所示: <ImageView android:layout_width="match_parent" ...
分类:移动开发   时间:2014-09-11 17:22:42    阅读次数:305
Android自定义对话框
首先需要一个Layout界面: <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="ver...
分类:移动开发   时间:2014-09-10 17:50:10    阅读次数:197
614条   上一页 1 ... 54 55 56 57 58 ... 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!