-
ListView---SimpleAdpter的简介: 初始化SimpleAdapter的总共包含5个参数 1、context:上下文环境 2、data:数据源(List<? extends Map<String,?>>data)一个map组成的list集合 每一个Map都会去对应ListView列表中的一行 每一个Map中的见必须包含所有在from中指定的键 resource:列表项中的布局文件的ID from:Map中的键名 to:绑定数据视图的中的ID,与from成对应的关系查看全部
-
适配器。(ArrayAdapter)数据适配器的实现过程: 1.新建适配器 arr_adapter=new ArrayAdapter<String>(上下文(this),当前ListView加载的每一个列表项所对应的布局文件(android.R.layout.simple_list_item_1),数据源(String[]arr_data={"1","2","3","4"})); 2.添加数据源到适配器(上一步已包含) 3.视图(ListView)加载适配器 listView.setAdapter(arr_adapter);查看全部
-
配置Adapter 1、PagerAdapter 数据源:List<View> 2、FragmentPagerAdapter 数据源:List<Fragment> 3、FragmentStatePagerAdapter 数据源:List<Fragment>查看全部
-
加载显示的页卡 将layout布局转换为View对象 (1)LayoutInflater if = getLayoutInflater().from(this); lf.inflate(resource,root); (2)View.inflate(context,resource,root);查看全部
-
处理动态fragment查看全部
-
Fragment静态加载查看全部
-
Fragment的知识概要查看全部
-
Fragment设计哲学的设计案例查看全部
-
Fragment查看全部
-
Fragment与Activity的通信 (1)Fragment可调用getActivity()方法获取他所在的Activity (2)Activity可调用FragmentManager的findFragmentById()或者findFragmentByTag()方法获取Fragment Activity——>Fragment:在Activity中创建Bundle数据包,并调用Fragment的setArguments(Bundle bundle)方法 Fragment——>Activity:需要在Fragment中定义一个内部回调接口,再让包含该Fragment的Activity实现该接口。这样Fragment可调用该回调方法将数据传递给Activity。查看全部
-
五种布局样式使用率查看全部
-
WebView缓存的运用查看全部
-
判断页面的加载过程,这样更给用户一个友好的提示查看全部
-
物理按键的返回查看全部
-
WebView中网页的后退与前进查看全部
举报
0/150
提交
取消