-
活动篇 <activity </activity>查看全部
-
<application </application>查看全部
-
全局篇 versionCode minSdkVersion查看全部
-
AndroidManifest.xml配置文件介绍 本质:AndroidManifest.xml是整个应用的主配置清单文件 包含:该应用的包名、版本号、组件、权限等信息 作用:记录该应用的相关的配置信息查看全部
-
LayoutInflater.inflate参数详解 http://blog.csdn.net/xyz_fly/article/details/21301303 http://blog.csdn.net/xyz_fly/article/details/37932989查看全部
-
Fragment要覆写onCreateView方法,该方法需要返回一个View对象,该方法的签名是 View onCreate(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceStage) 其中container是包含该Fragment的ViewGroup,即该Fragment的容器 通过执行inflater.inflate(R.layout.fragment_layout, container, false)可以得该View,参考如下API文档 http://localhost/docs/reference/android/view/LayoutInflater.html#inflate(int, android.view.ViewGroup, boolean) public View inflate (int resource, ViewGroup root, boolean attachToRoot) Returns The root View of the inflated hierarchy. If root was supplied and attachToRoot is true, this is root; otherwise it is the root of the inflated XML file.查看全部
-
自己写一个drawable的selector,这个自定义的selector决定了默认颜色、被选中时的颜色、被按下时的颜色 然后通过设置android:background="@drawable/custom"自定义的drawable查看全部
-
通过设置android:progressDrawable="@drawable/progress_bar"实现覆盖style中progressDrawable的目的,从而覆盖默认的UI查看全部
-
<style name="Widget.ProgressBar.Horizontal"> <item name="android:progressDrawable">@android:drawable/progress_horizontal</item> </style>查看全部
-
设置一般的样式查看全部
-
ProgressDialog.setButton ProgressDialog.setCancelable ProgressDialog.show查看全部
-
设置ProgressDialog的样式 setProgressStyle setIcon setTitle setMessage查看全部
-
ProgressBar关键方法查看全部
-
关键属性查看全部
-
第一显示进度可以表示当前听歌听到哪了,第二显示进度可以表示当前歌曲缓冲到哪了查看全部
举报
0/150
提交
取消