android:fillViewport=trueScrollView下面的组件如果有android:layout_height="fill_parent"或android:layout_height="wrap_content"那么必须将ScrollView的android:fillViewpor...
分类:
移动开发 时间:
2014-05-16 18:09:45
阅读次数:
368
1、可以使某些资源文件或UI组件可重用 2、定义一个文本编辑框,使用绝对定位
android:layout_x="20dip" android:layout_y="80dip" 3、控件位置
android:layout_centerHorizontal 控制该组件是否位于布局容器的水平居中位置 a...
分类:
移动开发 时间:
2014-05-16 18:07:41
阅读次数:
571
Inflater英文意思是膨胀,在Android中应该是扩展的意思吧。
LayoutInflater的作用类似于
findViewById(),不同点是LayoutInflater是用来找layout文件夹下的xml布局文件,并且实例化!而
findViewById()是找具体某一个xml下的具体 ...
分类:
移动开发 时间:
2014-05-16 09:20:39
阅读次数:
432
final JLabel j1=new JLabel("测试");
JButton jb=new JButton("测试事件监听");
jb.addMouseListener(new MouseAdapter(){
public void mousePressed(MouseEvent e){
j1.setText("鼠标按下");/j1必须用final修饰。
}
});...
分类:
编程语言 时间:
2014-05-15 06:33:25
阅读次数:
397
在res/layout/menu文件夹下,放置login.xml:
代码中配置如下:@Overridepublic boolean onCreateOptionsMenu(Menu menu)
{super.onCreateOptionsMenu(menu);getMenuInflat...
分类:
移动开发 时间:
2014-05-14 02:30:32
阅读次数:
581
刚开始写Android程序如图发现使用了findViewById方法之后输出的话居然是null(空指针错误),也就是说这个方法没有成功。网上说这样写是在activity_main
.xml去找这个ID所代表的控件,而现在使用的ADT在layout下除了activity_main .xml还多生成了一...
分类:
移动开发 时间:
2014-05-14 02:00:46
阅读次数:
420
1)创建一个android项目填写项目信息2)创建一个新Activity右键点击Eclipse左边(默认)你要加入Activity的包,比如,我的包是com.INdroid.layout。然后选New->Class,输入类名后(注意首字母大写),在Superclass的Browse那里点击。最后在C...
分类:
移动开发 时间:
2014-05-13 20:56:51
阅读次数:
473
1.电话拨号器:
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
a...
分类:
移动开发 时间:
2014-05-13 15:08:57
阅读次数:
508
一、Gallery学习、看懂Logcat的提示信息看实际错误的第一句,像这句错误提示:android.widget.Gallery$LayoutParams,可以看出与Gallery有关的布局参数可能出错了,所以你定位错误的大致方向就有啦,你可以按照“Gallery”和“Layout”这两个字眼来查找在代码中出现的位置,这..
分类:
其他好文 时间:
2014-05-13 12:33:10
阅读次数:
352
楼主让这个问题郁闷了一晚上。。。。。在logcat里明明显示adapter的getview方法里的list大于一条数据 ,但posotion却一直是0.。。。。运行后也只显示list[0]里面的数据。。。。最后的最后原来错误出在布局文件上
我以前的是这样的;
<ScrollView
android:layout_width="fill_parent"
...
分类:
移动开发 时间:
2014-05-12 23:36:45
阅读次数:
386