`
tracy061
  • 浏览: 65233 次
社区版块
存档分类
最新评论
文章列表
  //获取asset文件夹的管理权限 AssetManager aManager = context.getAssets(); //打开文件名为fileName的文件 InputStream file = aManager.open(fileName); //统计文件中的字节数 int length = file.available(); //创建一个数组存储字符 byte[] buff = new byte[length]; file.read(buff); //关闭文件 file.close(); //将文件中的内容保存在content中 String cont ...
EditText预设显示的文字有两种方式:1.android:text:他会将文字显示在文本框中,但是选中文本框后,文字是不会消失的。2.android:hint:他会将文字显示在文本框中,但是如果选中文本框后,文字会自动消失,就是预设的功能。
  HorizontalScrollView hs = (HorizontalScrollView)findViewById(R.id.horscro); //水平滑动栏箭头的出现与消失 hs.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { // TODO Auto-generated method ...

调用浏览器

启动默认浏览器: Intent intent = new Intent(); intent.setAction("android.intent.action.VIEW"); Uri content_url = Uri.parse("http://www.baidu.com"); intent.setData(content_url); startActivity(intent);
main.xml:设定ListView父控件的大小,定义ListView的各种属性 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:id="@+id/listLinearLayout" android:layou ...

使用Dialog主题

修改项目对应的AndroidManifest.xml,在相对应的<activity标签上加上android:theme="@android:style/Theme.Dialog"例子:<activity android:name=".ListViewActivity" android:theme="@android:style/Theme.Dialog"/>

延时实现,Handle

//延时 Handler x = new Handler(); x.postDelayed(new splashhandler(), 2000);//延时2秒,接着往下面做就是splashhandler(); //延时实现掉跳转 class splashhandler implements Runnable{ public void run() { startActivity(new Intent(getApplication(),MainMapView.class)); NewsMapActivity.this.fi ...

Intent切换出错

代码没有错,然后该添加的都添加了~~没有报错,然后只在运行时出错,出错地方就在:startActivity(intent);上,只在运行时出错。 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.keyan.news.map" android:versionCode="1" and ...
在setContentView(R.layout.mainview);上添加: getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
今天在论坛上下载了一个和listView有关的源代码,导入至eclipse后,报错,需要把所有的@Override都删掉。错误原因:jdk不合适解决方法:更改jdk,更改方法,在eclipse中的,Windows->Preference->Java->Compiler->1.6如果不行,就改成 Windows->Preference->Java->Installed JREs->Add->Standard VM->Directory->选择jdk1.6安装文件夹,然后确定,之后Finish,再执行前面步骤。感谢:安卓巴士高校群中的 ...

去掉标题栏

在setContentView(R.layout.main);即布局前放置:     requestWindowFeature(Window.FEATURE_NO_TITLE);
Global site tag (gtag.js) - Google Analytics