android-code
爱自在
这个作者很懒,什么都没留下…
展开
-
android-code-spinner
mSpinner = findViewById(R.id.spinner); String[] mItems = getResources().getStringArray(R.array.names); ArrayAdapter<String> _Adapter=new ArrayAdapter<String>(this,android.R.layout.simple_spinner_dropdown_item, mItems); mSpinner.setAdapter(.原创 2020-07-29 13:43:24 · 107 阅读 · 0 评论 -
android-code-调节屏幕亮度
/** * 设置当前屏幕亮度值 0--255 */ private void saveScreenBrightness(int paramInt) { try { Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS, paramInt); } catch (E原创 2015-01-26 14:28:23 · 737 阅读 · 0 评论 -
android-code-btn实现长按连击效果
btnAdd.setOnTouchListener(new OnTouchListener() { private boolean isRun = true; private long keyDownMills = -1; @Override public boolean onTouch(View v, MotionEvent event) { Logcat.d原创 2015-02-03 14:08:57 · 1124 阅读 · 0 评论 -
android-coder-分割条
<View android:layout_width="match_parent" android:layout_height="1dp" android:layout_marginBottom="1dp" android:layout_marginTop="1dp" andro原创 2015-02-02 13:41:49 · 500 阅读 · 0 评论 -
android-code-getip
public String getIP() { try { for (Enumeration en = NetworkInterface .getNetworkInterfaces(); en.hasMoreElements();) { NetworkInterface intf = en.nextElement(); for (Enumeration enum原创 2014-12-09 15:37:22 · 713 阅读 · 0 评论 -
android-code-启动第三方应用
/** * @param context * @param pkName * 包名 * @param activityName * activity全路径 */ public static void startOtherApp(Context context, String pkName, String activityN原创 2015-02-02 10:24:15 · 591 阅读 · 0 评论 -
android--code--Properties
public class PropUtils { public static Properties loadConfig(Context context, String file) { Properties properties = new Properties(); try { FileInputStream s = new FileInputStream(file);原创 2014-11-11 11:10:40 · 590 阅读 · 0 评论 -
android-code-程序异常处理与记录log
这里是分析的vlc的异常处理。原创 2014-10-10 11:57:02 · 838 阅读 · 0 评论 -
android--code--从路径获取bitmap对象
public Bitmap getBitmapFromPath(String path) { if (!new File(path).exists()) { System.err.println("getBitmapFromPath: file not exists"); return null; } // Bitmap bitmap = Bitmap.createBit原创 2014-11-11 09:22:42 · 6497 阅读 · 0 评论 -
android-code-调整音量
这是不弹出界面的方式:原创 2014-09-28 11:57:20 · 804 阅读 · 0 评论 -
android-code-网络状态广播
权限:原创 2014-09-28 11:41:24 · 736 阅读 · 0 评论 -
android--code-播放音乐
public void playMusic() { try { String path = "/sdcard/111.mp3"; Utils.d(TAG, "path: " + path); if (!new File(path).exists()) { Utils.e(TAG, "音频文件未找到!!!"); return; } MediaP原创 2014-09-28 14:01:33 · 702 阅读 · 0 评论 -
android-code-saveLog
来自vlc0.9.9版本。可以当一个工具类。第一个用来获取原创 2014-09-16 15:59:11 · 887 阅读 · 0 评论 -
android-code-dialog
http://www.cnblogs.com/salam/archive/2010/11/15/1877512.html转载 2014-09-16 15:52:44 · 691 阅读 · 0 评论 -
android-code-handler
来自于vlc 0.9.9版本 让原创 2014-09-14 11:50:55 · 1319 阅读 · 0 评论 -
android-code-file
http://blog.csdn.net/luoxiangyu001/article/details/6795502转载 2014-09-16 15:51:14 · 733 阅读 · 0 评论 -
android-code-电量变化
来自0.9.9 vlc原创 2014-09-14 12:32:21 · 757 阅读 · 0 评论