tttActionBar 显示标题,ICON, 设置按钮等
创建android 工程 android list targets 查看当前target 列表
android create project –target 1 –name MyPlayer –path MyPlayer –activity MainActivity –package com.ayao.player
@SuppressLint(“NewApi”) lint是android检查SDK版本检查的工具 import android.annotation.SuppressLint ;
init进程轮循跑的是service么?如 property service,那不是单独的进程啊
看到一个大哥推着婴儿车过来,然后抱着宝宝坐在临河的木凳上,看着河上的船来船往,好有爱啊 好喜欢这种风吹过来的河水的味道,想起小时候在江边的感觉
android/frameworks/base/include/media/mediaplayer.h
enum media_player_states { MEDIA_PLAYER_STATE_ERROR = 0, MEDIA_PLAYER_IDLE = 1 << 0, MEDIA_PLAYER_INITIALIZED = 1 << 1, MEDIA_PLAYER_PREPARING = 1 << 2, MEDIA_PLAYER_PREPARED = 1 << 3, MEDIA_PLAYER_STARTED = 1 << 4, MEDIA_PLAYER_PAUSED = 1 << 5, MEDIA_PLAYER_STOPPED = 1 << 6, MEDIA_PLAYER_PLAYBACK_COMPLETE = 1 << 7 };