下载地址:https://github.com/guojunyi/PullDownListView 使用: xml: <com.pulldownlistview.PullDownListView android:id="@+id/pullDownListView" android:layout_wi
分类:
其他好文 时间:
2016-01-27 17:12:48
阅读次数:
151
拖动条采用拖动滑块的位置来表示数值
SeekBar的常用xml属性值:
重要的android:thumb制定一个Drawable对象,改变滑块外观
通过滑块来改变图片的透明度:
main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@...
分类:
其他好文 时间:
2016-01-22 18:18:29
阅读次数:
161
一个下拉列表的实现,这里记录下,下拉列表是如何实现的:(1)布局:<Spinner
android:id="@+id/sp_xinjian"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>(2)Item:<?xmlversion="1.0"encoding="utf-8"?>
<LinearLayoutxmln..
分类:
其他好文 时间:
2016-01-13 20:13:47
阅读次数:
183
在res目录下的menu文件夹下创建一个main.xml文件,内容如下: 注释:这里创建了两个菜单项,其中标签就是用来创建具体的一个菜单项,然后通过android:id给这个菜单项指定一个唯一的标识符,通过android:title给这菜单指定一个名称。然后打开Activity,重写o...
分类:
移动开发 时间:
2016-01-09 16:46:21
阅读次数:
208
在活动中,可以通过findViewById()方法获取到在布局文件中定义的元素,这里我们传入R.id.button_1,来得到按钮的实例,这个值是刚才在first_layout.xml中通过android:id属性指定的。findViewById()方法返回的是一个View对象,我们需要向下转型.....
分类:
移动开发 时间:
2015-12-18 20:19:50
阅读次数:
169
对手势感到好奇从网上学习了一部分。保存:在xml中添加手势绘制即类似画板可以绘制手势的:<android.gesture.GestureOverlayView
android:id="@+id/gesture"
android:layout_width="match_parent"
android:layout_height="match_parent"/>设置手势的一些属性:mGov=(Gest..
分类:
移动开发 时间:
2015-12-14 12:36:21
阅读次数:
242
今天碰到一个关于Button的问题:android Button上面的英文字符串会自动变成大写,运行的Android 5.1版本,如下图所示:图1:Button 图2:TextView这个Button的定义代码如下 <Button
android:id="@+id/addContacts"
android:layout_width="match_p...
分类:
移动开发 时间:
2015-12-10 13:33:19
阅读次数:
167
这里介绍使用集合在程序中为Spinner控件设定数据源,步骤如下:1、在Android Studio界面中,选择“Project”,然后展开"app"->"res"->"layout",打开activity_main.xml,添加一个Spinner控件,代码如下:<Spinner
android:id="@+id/eduSpinner"
android:layout...
分类:
移动开发 时间:
2015-11-24 09:56:57
阅读次数:
687
第一在使用XScrollView布局是,无法在该布局.xml文件,放置内容布局控件,假如放置了会报错<com.markmao.pulltorefresh.widget.XScrollView
android:id="@+id/scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@..
分类:
其他好文 时间:
2015-11-23 19:18:32
阅读次数:
185
先上代码再说话!清单文件加权限:布局文件: 1 9 10 17 代码: 1 package com.example.shake; 2 3 import java.io.IOException; 4 5 import android.R.id; 6 import an...
分类:
其他好文 时间:
2015-11-23 00:54:11
阅读次数:
290