Android layout之间有空隙

将margin设为负值,一般-8dp差不多


为什么?求解释!

当android:orientation="horizontal"   与 android:layout_gravity =“right”一起用的时候不能完全居右

注意 只有android:orientation="vertical"  才能完全居右


且android:layout_gravity  是针对LinearLayout布局


而 android:layout_alignParentRight="true" 是相对于RelativeLayout


在实际开发种LayoutInflater这个类还是非常有用的,它的作用类似于 findViewById(),
不同点是LayoutInflater是用来找layout下xml布局文件,并且实例化!而findViewById()是找具体xml下的具体 widget控件(如:Button,TextView等)。

关于android 静态接口实例化: http://blog.csdn.net/yzw2013/article/details/17637701

ViewPager


Overview

ViewPager一般是和Fragment联合使用,Fragment提供一个方便的方法来提供和管理每一个page 的生命周期。对于ViewPager 的Fragment 有标准的Adapter : FragmentPagerAdapter 和 FragmentStatePagerAdapter。


PagerAdapter

When you implement a PagerAdapter, you must override the following methods at minimum:

  • instantiateItem(ViewGroup, int)
  • destroyItem(ViewGroup, int, Object)
  • getCount()
  • isViewFromObject(View, Object)

你可能感兴趣的:(Android,开发)