732003684

导航

2013年1月24日 #

3d动画切换

摘要: 在F:\java\3d旋转效果 阅读全文

posted @ 2013-01-24 17:26 732003684 阅读(106) 评论(0) 推荐(0) 编辑

edittext输入框的背景效果

摘要: xml<EditText android:id="@+id/login_user_edit" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/login_top_layout" android:textColor="#000" android:textSize="15sp" android:layout_marginTop 阅读全文

posted @ 2013-01-24 17:19 732003684 阅读(4154) 评论(0) 推荐(0) 编辑

activity 成popupwindow效果

摘要: manifest.xml <activity android:name="cn.bw.activitys.ExitActivity" android:theme="@style/MyDialogStyle"> </activity>styles.xml<style name="MyDialogStyle"> <item name="android:windowBackground">@android:color/transparent</item> < 阅读全文

posted @ 2013-01-24 16:47 732003684 阅读(309) 评论(0) 推荐(0) 编辑

登录跳转效果

摘要: manifest.xml<activity android:name="cn.bw.activitys.LoadingActivity" android:theme="@style/MyDialogStyle"> </activity>styles.xml<style name="MyDialogStyle"> <item name="android:windowBackground">@android:color/transparent</item> & 阅读全文

posted @ 2013-01-24 16:34 732003684 阅读(152) 评论(0) 推荐(0) 编辑

加载图片

摘要: /** * */package cn.etong.util;import java.io.BufferedOutputStream;import java.io.ByteArrayOutputStream;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.lang.ref.SoftReference;import java.net.HttpURLConnection;import java.net.Malfo. 阅读全文

posted @ 2013-01-24 16:26 732003684 阅读(277) 评论(0) 推荐(0) 编辑

【转】PreferenceActivity详解

摘要: http://gundumw100.iteye.com/blog/904097 阅读全文

posted @ 2013-01-24 14:51 732003684 阅读(107) 评论(0) 推荐(0) 编辑

在卷卷里加数字

摘要: <TextView android:id="@+id/tv_hgv_how" android:layout_width="25dp" android:layout_height="25dp" android:layout_alignRight="@+id/ivIcon" android:layout_marginRight="-4dp" android:background="@drawable/umeng_xp_new_tip_bg" a... 阅读全文

posted @ 2013-01-24 14:30 732003684 阅读(200) 评论(0) 推荐(0) 编辑

自定义可下拉刷新列表

摘要: package com.hwtt.android.oa.adapter.myapply;import java.util.ArrayList;import android.app.AlertDialog;import android.content.Context;import android.content.DialogInterface;import android.content.Intent;import android.os.Handler;import android.view.LayoutInflater;import android.view.View;import andro 阅读全文

posted @ 2013-01-24 14:10 732003684 阅读(534) 评论(0) 推荐(0) 编辑

在listview里面的checkbox被选中或取消

摘要: public ArrayList<Boolean> isCheckList = new ArrayList<Boolean>(); // 保存checkbox的点击状态cb.setChepublic View getGroupView(final int groupPosition, boolean isExpanded, View convertView, ViewGroup parent)cked(isCheckList.get(groupPosition)); cb.setOnClickListener(new View.OnClickListener... 阅读全文

posted @ 2013-01-24 12:01 732003684 阅读(1854) 评论(0) 推荐(0) 编辑

service 和broadcastreceiver的简略小结

摘要: 【转】http://bigboy.iteye.com/blog/966475简单概括就是---->service 启动方式--》2种1、context.startservice 2、context.bindservice主要的复杂的操作都在service里面进行处理(可以开一个线程跑)broadcastreceiver启动方式----》Context.sendbroadcast(intent) 在接收方去注册一个receiver 在销毁的时候去unregister 阅读全文

posted @ 2013-01-24 11:30 732003684 阅读(123) 评论(0) 推荐(0) 编辑