谷歌Android开发常见错误及技巧
2011-01-21 15:44:49 来源:本站整理9、控件两端对齐:
如下代码让 位于同一行的两个控件分别左对齐和右对齐:
< RelativeLayout
xmlns:Android = "http://schemas.android.com/apk/res/android"
Android:background= "@drawable/top"
Android:layout_width= "fill_parent"
Android:layout_height= "wrap_content"
>< ImageView
Android:id = "@+file_browser/imgRefresh"
Android:layout_width= "wrap_content"
Android:layout_height= "wrap_content"
Android:layout_marginLeft= "10px"
Android:src = "@drawable/refresh"
Android:layout_centerVertical= "true"
>
</ ImageView>
< ImageView
Android:id = "@+file_browser/imgCheck"
Android:layout_alignParentRight= "true"
Android:layout_width= "wrap_content"
Android:layout_height= "wrap_content"
Android:layout_marginRight= "10px"
Android:src = "@drawable/close"
Android:layout_centerVertical= "true"
>
</ ImageView>
</ RelativeLayout>
10、android软键盘 把控件 往上挤的解决办法:
键盘区域外才是屏幕的边缘,定义布局文件时使用:android:gravity="bottom"的话就会被挤到上部!
解决办法:
在此工程的androidMainfest.xml文件中对应的Activity中写入 android:windowSoftInputMode="adjustPan"
或者在配置文件中把布局文件的大小写死!
11、在布局中使用scrollview:
把原来的布局用
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:scrollbars="none">括起来即可实现视图的滚动。
更多精彩
赞助商链接