Android 解决布局问题

       怎么解决按钮布置在页面的最右上角?
   解决方案是:利用android:layout_gravity:"right|top";项目中我添加的xml配置文件如下为:
 <Button
        android:id="@+id/btnAdd"
        android:layout_width="wrap_content"  
        android:layout_height="wrap_content"   
        android:background="@drawable/jiahao"
        android:layout_gravity="right|top" />

你可能感兴趣的:(android,布局)