- 浏览: 637892 次
- 性别:
- 来自: 杭州
最新评论
-
luo_ganlin:
别的不多说,点个赞!
关于Android隐式启动Activity -
IWSo:
谢楼主!研究了好久,原来是这样!
android中如何让LinearLayout实现点击时背景图片切换 -
fantao005x:
粘帖的不错
android中如何让listview的内容全部显示出来 -
learner576539763:
Android_gqs 写道请问博主,Viewstub 可实现 ...
android中ViewStub使用 -
goontosoon:
抄的什么啊,狗屁不通
对ContentProvider中getType(Uri uri)
文章列表
android中重新安装应用的adb指令
- 博客分类:
- android
下面以:xinhuaestore.apk 为例
往往系统中有些文件夹没有读写的权限,所以要
adb remount 回车
adb push D:\eStore\bin\classes\eStore.apk /system/app 回车
如果还是安装不了
adb uninstall com.xinhuaestore
adb remount 回车
adb push D:\eStore\bin\classes\eStore.apk /system/app 回车
如果还是不行
adb shell
ls /system/app
rm estore.apk ...
Android中尺寸单位杂谈
- 博客分类:
- android
讲解一
在android系统中单位DP也就是DIP:device independent pixels(设备独立像素).
dip : device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和 QVGA 推荐使用这个,不依赖像素。
px : pixels(像素). 不同设备显示效果相同,一般我们HVGA代表320x480像素,这个用的比较多。
pt : point,是一个标准的长度单位,1pt=1/72英寸,用于印刷业,非常简单易用;
sp : scaled pixels(放大像素). ...
android中获取最后插入记录的id值
- 博客分类:
- android
int lastid = Integer.parseInt(uri.getLastPathSegment());
启动activity的时候会出现一些界面切换的动画,你可以通过设置把它们去掉,这里有一段代码,可以去除切换动画:
public void onClick(View v) {
startActivity(new Intent(ActLoadActivity.this, SubActivity.class));
overridePendingTransition(Animation.INFINITE, Animation.INFINITE);
//startActivity(new Intent(ActLoadActivity.this, ActLoadA ...
空闲的时候,想看看电子书,不过在公司直接打开网页看很不方便,被领导或者同事看见了,挺不好意思的。
于是,自己写了个epbuReader,按epub章节直接将流输入到控制台上,这样其它人就看不到了。
不过这样看着是挺费眼力的。
SharedPreference的监听
- 博客分类:
- android
在实际项目开发中,通过实现OnSharedPreferenceChangeListener接口对SharedPreference进行监听:
/**
*@author: antty
* @time:2011-11-3
*/
public class SpListener implements OnSharedPreferenceChangeListener {
private static final String TAG = "SpListener";
@Override
public void onSharedPr ...
android中的launch
- 博客分类:
- android
android中的launch可以如下配置:
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ActLoadActivity" >
<!-- android:clearTaskOnLaunch="true" -->
<intent-filter>
<act ...
android:allowTaskReparenting 是否允许activity更换从属的任务,比如从短信息任务 切换到浏览器任务。 --------------------------------------------------------------- android:alwaysRetainTaskState 是否保留状态不变, 比如切换回home, 再从新打开, activity处于最后的状态 --------------------------------------------------------------- android:clearTaskOnLanunch ...
1.关于文件夹目录的创建,直接上代码,亮点是方法的嵌套调用
public class Main {
private static String strFilePath = "E:\\kankan";
public static void main(String[] args) {
File file = new File(strFilePath, "aa");
if(!file.exists()){
try {
createDirs(file);
} catch (Exception ...
@Override
public int compare(Books firstBook, Books secondBook) {
int ret = 0;
switch (mKey) {
case SORT_BY_RECENT_READ:
ret = sortByRecentRead(firstBook, secondBook);
break;
case SORT_BY_DOWNLOAD:
ret = sortByDownload(firstBook, secondBook);
break;
case SORT_BY_RE ...
android中菜单的使用
- 博客分类:
- android
@Override
public boolean onCreateOptionsMenu(Menu menu) {
super.onCreateOptionsMenu(menu);
//all books menu
menu.add(MENU_GROUP_BOOKS, COPY_FORE_CARD, 0, R.string.lib_menu_imput).setIcon(R.drawable.icon_copy_from_card);
menu.add(MENU_GROUP_BOOKS, EST ...
java中关于引用的一些测试
- 博客分类:
- javaBase
public class Test {
HashMap<Integer, String> names = new HashMap<Integer, String>();
private static User user = new User("aa");
public static void main(String[] args) {
User userB = user;
User userC = new User("bb");
//user.setName("new_aa& ...
andorid中TabHost的使用
- 博客分类:
- android
tabHost往往被当作程序的通用框架入口,其主要的使用方式有两种: 1.继承TabActivity,结合对应的xml配置文件导入tab选项内容体 2.继承Activity,结合拥有TabHost标签的xml配置文件导入
对于1:
public class TabExdHostActivity extends TabActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TabHost myTab ...
在Android 中,TextView 是继承于View,而Button是继承于TextView.这个有一个API就可以实现的。
android:drawableBottom
setCompoundDrawablesWithIntrinsicBounds(int,int,int,int)
The drawable to be drawn below the text.
android:drawableLeft
setCompoundDrawablesWithIntrinsicBounds(int,int,int,int)
The drawable to be drawn ...