2015年9月28日

最简单webview跳转

摘要: String url = "http://www.qq.com"Uri uri=Uri.parse("http://www.baidu.com");Intent intent=new Intent(Intent.ACTION_VIEW, uri);startActivity(intent); 阅读全文

posted @ 2015-09-28 20:43 纸玫瑰 阅读(198) 评论(0) 推荐(0) 编辑

进度条样式自定义

摘要: 进度条样式自定义style="@android:style/Widget.ProgressBar.Horizontal"android:progressDrawable="@drawable/asd" ... 阅读全文

posted @ 2015-09-28 16:12 纸玫瑰 阅读(310) 评论(0) 推荐(0) 编辑

ProgressDialog 进度条的初步认识

摘要: public class MainActivity extends Activity implements View.OnClickListener{ private ProgressBar progress; private Button add; private Button ... 阅读全文

posted @ 2015-09-28 15:39 纸玫瑰 阅读(717) 评论(0) 推荐(0) 编辑

初识别进度条

摘要: public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceS... 阅读全文

posted @ 2015-09-28 10:58 纸玫瑰 阅读(264) 评论(0) 推荐(0) 编辑

导航