WEB开发网
开发学院手机开发Android 开发 谷歌Android开发常见错误及技巧 阅读

谷歌Android开发常见错误及技巧

 2011-01-21 15:44:49 来源:本站整理   
核心提示:9、控件两端对齐:如下代码让 位于同一行的两个控件分别左对齐和右对齐:< RelativeLayoutxmlns:Android = "http://schemas.android.com/apk/res/android"Android:background= "@drawable/

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">括起来即可实现视图的滚动。

Android开发常见问题总结

Android开发图书推荐

android开发中遇到的2个路径问题和html解析问题

上一页  1 2 

Tags:谷歌 Android 开发

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接