android
xrl2012
这个作者很懒,什么都没留下…
展开
-
progressDialog in AsyncTask
class QueryBibleDetail extends AsyncTask<Integer, Integer, String>{ private Activity activity; private ProgressDialog dialog; private Context context; publ...2014-12-26 17:32:52 · 127 阅读 · 0 评论 -
eclipse logcat 不显示的解决方案
解决方案一:找到原因了,缓存条数的问题,preferences-->Android-->logcat-->Maximum number of logcat messages to buffer: 5000,改大一些就OK了。 解决方案二:我的设置居然是error 这样肯定显示不了啊 换成verbos 解决了这个问题。希望帮到大家 ...原创 2015-01-13 12:58:37 · 300 阅读 · 0 评论 -
ActonBar介绍-修改actionbar的高度
一下是本人在网上搜集的关于actionbar的资料http://blog.csdn.net/snowgeneral/article/details/7100393http://wiki.eoeandroid.com/Action_Barhttp://cdc.tencent.com/?p=5082但是网上所有的资料中没有修改actionbar高度的方法,本人在实际开发工程中遇到这...原创 2015-01-14 09:14:28 · 152 阅读 · 0 评论 -
android imagebutton src background 区别
假如你的 ImageButton 的宽高是100x100,而你要设置上去的图片是80x80, 1.如果用src进行设置,则你的图片会按80x80 居中绘制上去。 2.如果你使用的是background 则 你设置上去的图片会被拉伸成100x100 简单说来,就是用src的时候是原图显示,不改变图片的大小;用background的时候,按照组件的大小来放大或者缩小图片。 android教...原创 2015-01-15 13:38:29 · 221 阅读 · 0 评论 -
Android RelativeLayout 实现顶部左中右导航栏
Main.XML<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="fill_parent" android:layout_height="fill原创 2015-01-15 13:38:46 · 219 阅读 · 0 评论 -
android ImageButton 左中右分段排列
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_co原创 2015-01-15 13:39:10 · 242 阅读 · 0 评论 -
android Linearlayout gravite 和layout_gravity区别
android:gravity 属性是对该view中内容的限定.比如一个button 上面的text. 你可以设置该text 相对于view的靠左,靠右等位置.android:layout_gravity是用来设置该view相对与父view 的位置.比如一个button 在linearlayout里,你想把该button放在linearlayout里靠左、靠右等位置就可以通过该属性设置. ...原创 2015-01-15 13:39:25 · 106 阅读 · 0 评论 -
android Activity之间传递数据的几种解决思路
1,使用Intent ,网上可以搜索一堆相关实例2. 使用单例模式 android教程原创 2015-01-15 13:39:39 · 207 阅读 · 0 评论 -
xStream Annotation 注解配置
<message> <type>15</type></message>对应的java 映射代码@XStreamAlias("message")class RendezvousMessage { @XStreamAlias("type") private int messageType; ...原创 2015-01-16 13:03:06 · 150 阅读 · 0 评论 -
android AlertDialog标准化
public void createConfirmDialog(Activity activity, String message){ AlertDialog.Builder alert = new AlertDialog.Builder(activity); alert.setTitle(message) .setPositiveButton(activi...原创 2015-01-16 13:24:13 · 569 阅读 · 0 评论 -
android:windowSoftInputMode 属性介绍
简单的介绍了一下如何实现软键盘不自动弹出,使用的方法是设置android:windowSoftInputMode属性。那么,这个属性到底是干什么的,他有什么作用呢?今天这篇文章,就是探索android:windowSoftInputMode属性的作用的。 首先,我们从这个属性的名称中,可以很直观的看出它的作用,这个属性就是来设置窗口软键盘的交互模式的。 android:wi...原创 2015-01-16 13:24:30 · 117 阅读 · 0 评论 -
Android 软键盘盖住输入框的问题
当在Android的layout设计里面如果输入框过多,则在输入弹出软键盘的时候,下面的输入框会有一部分被软件盘挡住,从而不能获取焦点输入。解决办法:方法一:在你的activity中的oncreate中setContentView之前写上这个代码getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJU...原创 2015-01-16 13:24:44 · 100 阅读 · 0 评论 -
ActionBarImpl can only be used with a compatible window decor layout
在Activity中添加requestWindowFeature(Window.FEATURE_ACTION_BAR);requestWindowFeature(Window.FEATURE_ACTION_BAR_OVERLAY);并在AndroidManifast.xml中对Activity进行android:theme="@android:style/Theme.Holo.Di...原创 2015-01-18 11:51:25 · 134 阅读 · 0 评论 -
android back 返回机制的几种解决方案
方案一:在activity 中实现onKeyDown @Override public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_MENU) { return true; } if (keyCode == KeyEvent.KEYCODE...原创 2015-01-20 09:20:53 · 265 阅读 · 0 评论 -
android webservice(cfx:gbk) 乱码处理
public String soapWebservice(String url, String nameSpace, String methodName, String soapAction, LinkedHashMap<String, String> paramMap) { String URL = url; String NAME_SPACE = n...原创 2015-01-21 09:04:45 · 146 阅读 · 0 评论 -
android string.xml 特殊字符处理
<string name="version">版本:&#160;</string>如上: 在string 中存在冒号,这样的特殊字符, 如果架上后面$#160;这段代码就不会报错.相同的情况, 如果是&,逗号等,也是这样进行处理 XML转义字符 以下为XML标志符的数字和字符串转义符 " (&#34; 或 &a...原创 2015-01-21 09:07:20 · 509 阅读 · 0 评论 -
[Android]TextView实现分散对齐(两端对齐)
TextView是个特别基础的Android控件,只要有文本基本就少不了它。但是最近在项目开发的过程中我发现TextView存在很多局限 性,其中最令我头疼的就是TextView文本排版方面的问题。我们都知道在word中文字对齐方式有靠左、靠右、居中、分散对齐等,但是 TextView中就偏偏没有分散对齐这个属性设置。这就导致了TextView中一段文字会出现右边参差不齐的问题,中文由于每个字...原创 2015-01-22 09:13:04 · 340 阅读 · 0 评论 -
android布局初步
更多关于java教程,请移步大神网, android教程 RelativeLayout用到的一些重要的属性: 第一类:属性值为true或false android:layout_centerHrizontal 水平居中 android:layout_centerVertical 垂直居中 android:layout_centerInparent 相对于父元素完全...原创 2015-01-12 09:18:51 · 98 阅读 · 0 评论 -
android仿苹果分段按钮
这里只简单做了两个按钮的。首先是两个按钮的背景:res/drawable/seg_left.xml <?xml version="1.0" encoding="utf-8"?><selector xmlns:android="http://schemas.android.com/apk/res/android" > &l...原创 2015-01-12 09:07:02 · 132 阅读 · 0 评论 -
android write file
public static void writefile(String text, String fileName){ File externalStorageDir = Environment.getExternalStorageDirectory(); File myFile = new File(externalStorageDir , fileName);//...原创 2014-12-29 11:24:54 · 395 阅读 · 0 评论 -
actiobar title icon 隐藏 解决方案
常用解决方案:getSupportActionBar().setDisplayShowHomeEnabled(false);getSupportActionBar().setDisplayShowTitleEnabled(false); 但是目前这种情况: 在启动activity 会出现显示icon 或 title, 然后消失的效果, 造成很不好的体验解决方...原创 2014-12-29 13:44:06 · 125 阅读 · 0 评论 -
actionbar back 图标自定义
<resources> <style name="MyCustomTheme" parent="Theme.Sherlock.Light"> <item name="homeAsUpIndicator">@drawable/ic_home_up</item> </style>2014-12-29 13:54:43 · 123 阅读 · 0 评论 -
android intent 传递各种结构数据
android intent 传递list或者对象方法一: 如果单纯的传递List<String> 或者List<Integer>的话 就可以直接使用 Java代码 intent.putStringArrayListExtra(name, value) intent.putIntegerArrayListExtra(name, value) 方法二:...原创 2014-12-29 14:55:42 · 373 阅读 · 0 评论 -
java List String 包含
List<String> list = new ArrayList<String>();list.add("fsfs");list.add("abc");list.add("ffdes");System.out.println(list.contains("abc"));上述代码即可解决:如何在List<String> 链表原创 2014-12-31 11:12:50 · 456 阅读 · 0 评论 -
The method setBuiltInZoomControls(boolean) is undefined for the type MapView
package com.googlemaps;import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import com.google.android.gms.maps.MapView;import com.google.android.maps.MapActivi...原创 2014-12-31 17:54:50 · 203 阅读 · 0 评论 -
google mapView 用法
activity 代码 package com.example.mapview;import android.os.Bundle;import android.view.Menu;import com.google.android.maps.MapActivity;import com.google.android.maps.MapController;im...原创 2014-12-31 17:57:05 · 307 阅读 · 0 评论 -
android 表单布局 左右布局
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:la...原创 2015-01-05 09:21:12 · 403 阅读 · 0 评论 -
我怎么能不使用GPS得到我的Android设备的国家代码?
Android手机确实很好是哪里知道但有一条检索国家类似的国家代码或国家的名字?不需要知道确切的GPS位置-国家代码或名称就足够了,我用下面的代码: String locale = context.getResources().getConfiguration().locale.getCountry(Locale.getDefault()); System.out.pri...原创 2015-01-05 09:51:53 · 267 阅读 · 0 评论 -
android checkbox 或RadioButton, textView居左居右布局
<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_pa原创 2015-01-05 14:43:34 · 1011 阅读 · 0 评论 -
Android布局中实现圆角边框
<?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="#FFFFFF" /> <corners原创 2015-01-05 15:10:01 · 588 阅读 · 0 评论 -
Android 实例源代码(合集)百度网盘版
网盘链接:http://pan.baidu.com/s/1pJ2oNIN提取码:80jd更多精彩: android 百度网盘教程原创 2015-01-06 09:09:42 · 1275 阅读 · 0 评论 -
android 单选按钮组的使用
RadioGroup是Android组单选按钮控件。更具体地,使用提供的RadioGroup从组中只选择一个RadioButton的能力。当用户选择一个单选按钮,前一个被选中,自动成为泛滥。在我们的例子中,我们将向你展示RadioGroup在Android应用程序的使用。activity_main.xml: <RelativeLayout xmlns:android="h...原创 2015-01-06 16:50:50 · 347 阅读 · 0 评论 -
actionbar 与dialog 并用是注意事项
报错信息ActionBarImpl can only be used with a compatible window decor layout 原因:1:requestWindowFeature(Window.FEATURE_ACTION_BAR);与android:theme="@android:style/Theme.Holo.Dialog"不能同时使用 解决方案...原创 2015-01-08 09:06:09 · 149 阅读 · 0 评论 -
You must restart adb and Eclipse问题的解决
最近运行eclipse,控制台时不时老出现这样的错误:The connection to adb is down, and a severe error has occured. You must restart adb and Eclipse. Please ensure that adb is correctly located at 'D:/android-sdk-window...原创 2015-01-27 09:13:17 · 90 阅读 · 0 评论