摘要: 在ListView中设置Selector为null会报空指针?mListView.setSelector(null);//空指针试试下面这种:mListView.setSelector(new ColorDrawable(Color.TRANSPARENT));如何让ListView初始化的时候就选中一项?ListView需要在初始化好数据后,其中一项需要呈选中状态。所谓"选中状态"就是该项底色与其它项不同,setSelection(position)只能定位到某个item,但是无法改变底色呈高亮。setSelection(position)只能让某个item显示在可见It 阅读全文
posted @ 2012-11-09 01:57 编程小爬虫 阅读(333) 评论(0) 推荐(0) 编辑
摘要: package fkshl.activity.contentProvider;/* Copyright (C) 2006 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://ww... 阅读全文
posted @ 2012-11-09 01:49 编程小爬虫 阅读(355) 评论(0) 推荐(0) 编辑
摘要: EditText属性EditText继承TextView,所以EditText具有TextView的属性特点,下面主要介绍一些EditText的特有的输入法的属性特点android:layout_gravity="center_vertical":设置控件显示的位置:默认top,这里居中显示,还有bottomandroid:hin:Text为空时显示的文字提示信息,可通过textColorHint设置提示信息的颜色。android:singleLine:设置单行输入,一旦设置为true,则文字不会自动换行。android:gray="top":多行中指针 阅读全文
posted @ 2012-11-09 01:48 编程小爬虫 阅读(575) 评论(0) 推荐(0) 编辑