码迷,mamicode.com
首页 >  
搜索关键字:layout_width    ( 981个结果
You must supply a layout_width layout_width attribute 解决办法
今天项目上报出了一个这样的问题,如下: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.csii.jincheng/com.csii.ui.MainMenuActivity}: java.lang.RuntimeException: Binary XML file line #1: You must s...
分类:其他好文   时间:2014-09-25 13:12:08    阅读次数:279
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
Android开发之杂记(3)
1,标签 标签闪亮登场了。当LayoutInflater遇到这个标签时,它会跳过它,并将内的元素添加到的父元素里。迷惑了吗?让我们用来替换FrameLayout,并重写之前的XML布局:             android:layout_width="fill_parent"         android:layout_height="fill_parent"    ...
分类:移动开发   时间:2014-09-22 15:55:32    阅读次数:293
Android自定义控件——自定义属性
我们在自定义android组件的时候,除了用Java构建出组件的样子外,有时候还需要去申明一些“属性”提供给项目使用,那么什么是组件的属性呢? 例如在清单文件中,创建一个TextView的时候,这是需要制定TextView的android:layout_width="wrap_content" android:layout_height="wrap_content"等等这些都是组件的属性,TextView是android系统为我们提供好的组件,它的属性亦是android系统为我们提供了。...
分类:移动开发   时间:2014-09-18 13:18:44    阅读次数:233
Android学习第一课
首先看一个android项目中各个包的作用 下面看几个常用的控件: 1、 TextView 显示文本框控件 2、 EditText 输入文本框 TextView控件常用属性: id----控件的id layout_width----控件的宽度 layout_height----控件的高度 text----文本内容 textSize----文本大小 textColor--...
分类:移动开发   时间:2014-09-18 09:50:03    阅读次数:228
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 progressbar 自定义图片匀速旋转
项目中需要使用圆形进度条进行数据加载的显示,所以需要两个步骤 1:自定义progressbar滚动图片 2:匀速旋转图片 步骤一:自定义progressbar图片 <ProgressBar android:id="@+id/head_progressBar" android:layout_width="wrap...
分类:移动开发   时间:2014-09-12 13:35:43    阅读次数:266
981条   上一页 1 ... 89 90 91 92 93 ... 99 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!