Skip to content

Instantly share code, notes, and snippets.

@z8888q
z8888q / gist:2779858
Created May 24, 2012 06:44
Android-防止EditText自动获得焦点
在onCreate中加入
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
这样的话,默认不弹出,点击EditText的时候还会弹出。
@z8888q
z8888q / gist:3950635
Created October 25, 2012 05:43
Android Control Hardware Acceleration (硬件加速)
http://stackoverflow.com/questions/8895677/work-around-canvas-clippath-that-is-not-supported-in-android-any-more
http://developer.android.com/guide/topics/graphics/hardware-accel.html
硬件加速不支持的操作
When hardware accelerated, the 2D rendering pipeline supports the most commonly used Canvas drawing operations as well as many less-used operations. All of the drawing operations that are used to render applications that ship with Android, default widgets and layouts, and common advanced visual effects such as reflections and tiled textures are supported. The following list describes known operations that are not supported with hardware acceleration:
Canvas
clipPath()
@z8888q
z8888q / gist:4480342
Created January 8, 2013 01:42
android send email
Uri uri = Uri.parse("mailto:");
Intent intent = new Intent(Intent.ACTION_SENDTO, uri);
intent.putExtra(Intent.EXTRA_SUBJECT, " 云盘分享文件:" + emailSubject); // 主题
intent.putExtra(Intent.EXTRA_TEXT, emailBody); // 正文
startActivity(Intent.createChooser(intent,
"Select the mail application"));
Android developer: make your text views selectable
September 02, 2012
Historically, support for text selection and copy/paste on Android has been limited to text input fields only. (Some specific applications like the Browser and Gmail have also included their own implementations of text selection from other areas). Fortunately, starting with Android 3.0 the TextView component has built-in support for a consistent, system-wide selection & copying system.
However, this feature is not enabled by default for text views. Very few developers choose to enable it when appropriate: many probably don't even know of its existence. Enabling it is simple and only takes one extra attribute:
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textIsSelectable="true" />
(Or programmatically:)
@z8888q
z8888q / android自定义圆形Progressbar
Created July 17, 2013 01:36
android自定义圆形Progressbar
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:pivotX="50%" android:pivotY="50%" android:fromDegrees="0"
android:toDegrees="360">
<shape android:shape="ring" android:innerRadiusRatio="3"
android:thicknessRatio="8" android:useLevel="false">
<size android:width="48dip" android:height="48dip" />
@z8888q
z8888q / index.tmpl
Last active December 25, 2015 11:29
hunchentoot示例,上级目录是web-demo,参见《Windows上搭建hunchentoot开发环境》http://zhan.renren.com/mobileapp?gid=3602888498043591987
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test Lisp Web</title>
</head>
<body>
<h1>Lisp web开发实例</h1>
hi, <!-- TMPL_VAR name -->
</body>
@z8888q
z8888q / gist:7280681
Last active July 11, 2022 07:26
How to change an application icon programmatically in Android
//1 . Modify your MainActivity section in AndroidManifest.xml, delete from it, line with MAIN category in intent-//filter section
<activity android:name="ru.quickmessage.pa.MainActivity"
android:configChanges="keyboardHidden|orientation"
android:screenOrientation="portrait"
android:label="@string/app_name"
android:theme="@style/CustomTheme"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@z8888q
z8888q / gist:8314714
Created January 8, 2014 10:25
Ubuntu 64 install android-sdk
sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5
sudo apt-get install lib32z1
sudo apt-get install ia32-libs
// While you can edit this file, it's best to put your changes in
// "User/Preferences.sublime-settings", which overrides the settings in here.
//
// Settings may also be placed in file type specific options files, for
// example, in Packages/Python/Python.sublime-settings for python files.
{
// Sets the colors used within the text area
// 主题文件的路径
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",
@z8888q
z8888q / gist:9937676
Created April 2, 2014 16:31
change wordpress Radiate theme header image style.
#inc/extras.php
$header = get_header_image();
$header_image = "background-image: url('$header');";
$header_repeat = " background-repeat: no-repeat;";
$header_width = " max-width: 100%; height: 480px; background-size: cover;";
$header_position = " background-position: center bottom;";
$header_attachment = " background-attachment: scroll;";
$header_image_style = $header_image . $header_repeat . $header_width . $header_position . $header_attachment;