如何既使用ScrollView,又让里面的控件全部垂直居中
3个回答
推荐于2016-07-01 · 知道合伙人数码行家
可以叫我表哥
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:25897
获赞数:1464972
2010年毕业于北京化工大学北方学院计算机科学与技术专业毕业,学士学位,工程电子技术行业4年从业经验。
向TA提问 私信TA
关注
展开全部
如果我没记错的话线性布局LinearLayout的这两个属性android:gravity="center_vertical" 和android:orientation="vertical" 你写的有点问题吧?
当作为父layout的LinearLayout的属性为android:orientation="vertical" 的时候,android:layout_gravity="?"这里设为横向的时候才能生效。比如:left,right,center_horizontal等;
当作为父layout的LinearLayout的属性为android:orientation="horizental" 的时候,android:layout_gravity="?"这里设为纵向的时候才能生效。比如:top,bottom,center_vertical等;
方法一:
可以写两个布局判断横竖屏加载不同xml文件:
if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE){
Log.i("info", "landscape"); // 横屏
}
else if (this.getResources().getConfiguration().orientation ==Configuration.ORIENTATION_PORTRAIT) {
Log.i("info", "portrait"); // 竖屏
}
可以参考下这个http://www.cnblogs.com/franksunny/archive/2012/03/21/2410484.html
方法二:
在onCreate()方法里面用纯代码写动态布局试试,虽然我没试过,不过感觉会比较麻烦。
当作为父layout的LinearLayout的属性为android:orientation="vertical" 的时候,android:layout_gravity="?"这里设为横向的时候才能生效。比如:left,right,center_horizontal等;
当作为父layout的LinearLayout的属性为android:orientation="horizental" 的时候,android:layout_gravity="?"这里设为纵向的时候才能生效。比如:top,bottom,center_vertical等;
方法一:
可以写两个布局判断横竖屏加载不同xml文件:
if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE){
Log.i("info", "landscape"); // 横屏
}
else if (this.getResources().getConfiguration().orientation ==Configuration.ORIENTATION_PORTRAIT) {
Log.i("info", "portrait"); // 竖屏
}
可以参考下这个http://www.cnblogs.com/franksunny/archive/2012/03/21/2410484.html
方法二:
在onCreate()方法里面用纯代码写动态布局试试,虽然我没试过,不过感觉会比较麻烦。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:gravity="center"
android:layout_gravity="center"
android:orientation="vertical">
主要是这句:android:layout_gravity="center" 他对父布局起作用
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true"
android:gravity="center"
android:layout_gravity="center"
android:orientation="vertical">
主要是这句:android:layout_gravity="center" 他对父布局起作用
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询