`
ouyangfeng521
  • 浏览: 248697 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表
如何将一个应用程序适配在不同的手机上,虽然这不算是一个技术问题,但是对于刚刚做屏幕的开发人员来说,还真不是一件多么简单的事情。   首先:你需要在 AndroidManifest.xml 文件的 <manifest> 元素如下添加子元素 < supports-screens android:largeScreens = "true"        android:normalScreens = "true" android:anyDensity = &quo ...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; char ...
android环境搭建完成之后需要配置android环境变量,这对以后的运行调试很有帮助。下面我将一下mac环境下的配置步骤:1、在本地目录(home directory)中创建文件.bash_profile2、在文件中写入以下内容:export PATH=${PATH}:/Users/sxpmg/Application/android-sdk-mac_x86/tools:/Users/sxpmg/Application/android-sdk-mac_x86/platform-tools其中:/Users/sxpmg/Application/android-sdk-mac_x86/to ...
deb http://ubuntu.mirror.cambrium.nl/ubuntu/ lucid main universe   apt-get install gcc-4.3 g++-4.3     $sudo ln -snf gcc-4.3 gcc $sudo ln -snf g++-4.3 g++ $sudo ln -snf cpp-4.3 cpp
android 自带proguard 混淆器 配置如下 proguard.cfg 为配置 proguard的配置文件 在eclipse中建立项目会有的   -optimizationpasses 5 -dontusemixedcaseclassnames -dontskipnonpubliclibraryclasses -dontpreverify -verbose -optimizations !code/simplification/arithmetic,!field/*,!class/merging/* -keep public class * extends an ...
/usr/bin/ld:cannot find -licurses解决办法:         执行 apt-get install libncurses* 它会安装所有ncurses用到的库。
package com.test; import java.util.List; import android.app.Activity; import android.appwidget.AppWidgetHost; import android.appwidget.AppWidgetHostView; import android.appwidget.AppWidgetManager; import android.appwidget.AppWidgetProviderInfo; import android.content.Intent; import androi ...
sudo apt-get install ibus ibus-pinyin ibus-table-wubi
package com.test.audio; import java.io.File; import android.app.Activity; import android.media.MediaRecorder; import android.os.Bundle; import android.os.Environment; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button ...
在android 2.2 上流量统计用 TrafficStats 在android 1.6下 读取"/proc/self/net/dev";//系统流量文件 该文件的内容为:   注意 :wlan的一行 在关闭wifi了 这行就没有了
有代码下载
在玩MM时看到里面的tab 很酷 就学着做了一个   效果如下:
package eoe.demo; import java.security.SecureRandom; import javax.crypto.Cipher; import javax.crypto.KeyGenerator; import javax.crypto.SecretKey; import javax.crypto.spec.SecretKeySpec; /** * Usage: * <pre> * String crypto = SimpleCrypto.encrypt(masterpassword, cleartext ...
在android 平台下 解析xml有很多种 现在介绍下sax sax 是基于事件驱动的   代码如下:  xml: <?xml version="1.0" encoding="utf-8"?> <feed > <entry> <id>bob</id> </entry> </feed>  java 代码:   RootElement root=new RootElement("feed"); ...
先写个布局文件 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/screen" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <TextView and ...
Global site tag (gtag.js) - Google Analytics