
Android
萌翻鱼
失去好奇心的那一瞬间,人就死了
展开
-
Android添加背景音乐
1.在AndroidManifest.xml文件中的标签内加入下边语句2.新建MusicServer.java类,内容为import android.app.Service; import android.content.Intent;import android.media.MediaPlayer;import android.os.IBinder;public cl转载 2014-04-13 09:47:20 · 3807 阅读 · 1 评论 -
Android程序退出后音乐不停止
退出的页面添加protected void onDestroy() { // TODO Auto-generated method stub super.onDestroy(); stopService(ServiceIntent);// System.exit(0);}转载 2014-04-13 10:20:52 · 1173 阅读 · 0 评论 -
Android自定义控件样式及高亮显示
1./res/drawable 下添加 mybutton.xml 2./res/drawable 下添加 button_bg1.xml <stroke android:width="1px" android:color="#969696" /> <gradient转载 2014-04-13 10:33:01 · 939 阅读 · 0 评论 -
Android按钮隐藏
button.setVisibility(View.INVISIBLE);转载 2014-04-13 11:04:03 · 746 阅读 · 0 评论 -
Android设置滚动条
android:scrollbars="vertical"转载 2014-04-13 11:05:28 · 963 阅读 · 2 评论 -
Android搜索错误no such column
db.rawQuery("SELECT * FROM foodinfo WHERE name='"+name+"'", null);转载 2014-04-13 10:56:34 · 1696 阅读 · 0 评论 -
Android数据库打包发布
public class FoodHealthActivity extends Activity { private ImageButton Begin; private Intent ServiceIntent = new Intent("com.angel.Android.MUSIC"); public static String dbName = "foodHealth.db";转载 2014-04-13 09:31:33 · 554 阅读 · 0 评论