1、可点击区域不能设置为: android:layout_width="wrap_content" android:layout_height="wrap_content" 按钮的可点击范围,至少是高宽38dp,再小就监听不到了 2、不要用fill_parent: 布局, 高宽,不要用fill_pa...
分类:
其他好文 时间:
2014-10-10 20:45:54
阅读次数:
176
当一个容器内元素都浮动后,它将高度将不会随着内部元素高度的增加而增加,所以造成内容元素的显示超出了容器。为了便于查看效果,把刚才实例中的#layout增加一个边框和内边距:#layout { width:400px; border:2px solid #ccc; padding:2px;}文章出处:...
分类:
其他好文 时间:
2014-10-09 19:09:47
阅读次数:
137
xml文件:
<ListView
android:id="@+id/listview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:cacheColorHint="#0...
分类:
移动开发 时间:
2014-09-30 20:40:20
阅读次数:
328
一个布局中包含另一个布局
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
1.导入GifView.jar
2.xml
android:id="@+id/gif1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_centerInParent="true"
...
分类:
移动开发 时间:
2014-09-29 13:02:10
阅读次数:
184
本例要达到的效果是,
(1)点击ListView的item时会有指定的背景,
(2)松手之后,刚才点击的item也会有指定的背景
实现(1)很简单:在xml中为ListView设置listSelector即可。
<ListView
android:id="@+id/pop_listview_left"
android:layout_width="ma...
分类:
其他好文 时间:
2014-09-26 20:55:18
阅读次数:
153
设置控件的background的例子:
<Button
android:id="@+id/btn1"
android:layout_width="100dp"
android:layout_height="50dp"
android:text="btn1"
android:background="@drawable/...
分类:
移动开发 时间:
2014-09-26 14:45:58
阅读次数:
238
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
Relativelayout 就是所谓的相对布局,也就是说组件与组件之间是依靠相对位置来决定排列顺序的。
既然接口组件之间要指定他们的相对位置 ,那么我们就要为他们每一个组件设置一个ID名称,这样才方便我们为他们设置相对位置。
我们来根据一个简单范例来学习这个布局:
android:layout_width="fill_parent"
android:layout_...
分类:
其他好文 时间:
2014-09-25 16:32:49
阅读次数:
207
LinearLaout 标签是 一种接口组件的编排方式
android:orientation="vertical"
android;layout_width="fill_parent"
android;layout_height="fill_parent"
>
android:orientation="方式"
这个方式有两种:"vertical" 垂直 方式 ...
分类:
其他好文 时间:
2014-09-25 14:33:49
阅读次数:
740