学学习网 手机版

学学习网

学习路径: 学习首页 > 应用开发 > android >

第三章 Android开发 使用ViewStub延迟展开视图

设置字体:
----------------------------------
Java代码:

  1 ) 定义 ViewStub

   < ViewStub Android : id = "@+ id / stub _ import "
  android : inflatedId ="@+ id / panel _ import "
  android : layout ="@ layout / progress _ overlay "
  android : layout _ width =" fill _ parent "
  android:layout_height="wrap_content"
  android:layout_gravity="bottom"/>

  2 )展开视图

   findViewById(R.id.stub_import).setVisibility(View.VISIBLE);
  // 或者 获取视图
  View importPanel = ((ViewStub)
        findViewById(R.id.stub_import)).inflate();

  1 ) 定义 ViewStub

  < ViewStub android : id = "@+ id / stub _ import "
  android : inflatedId ="@+ id / panel _ import "
  android : layout ="@ layout / progress _ overlay "
  android : layout _ width =" fill _ parent "
  android:layout_height="wrap_content"
  android:layout_gravity="bottom"/>

  2 )展开视图

  findViewById(R.id.stub_import).setVisibility(View.VISIBLE);
  // 或者 获取视图
  View importPanel = ((ViewStub)
  findViewById(R.id.stub_import)).inflate();
----------------------------------
课程列表
重点难点
赞助链接