<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:orIEntation="vertical" > <Progressbar androID:ID="@+ID/progressbar" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_gravity="center_vertical|center_horizontal" androID:visibility="visible" /> <WebVIEw androID:ID="@+ID/web_engine" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:visibility="gone" /></linearLayout>
我希望Progressbar成为大样式,并且在屏幕中间垂直和水平居中…当我将layout_wIDth和height设置为fill_parent时,它会将实际加载微调器的大小增加到整个屏幕. .如何使布局适合整个屏幕并将实际加载图标居中?
解决方法 我已经检查了几种可能性,根据我的经验,这项任务的最佳选择是:<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" > <Progressbar androID:ID="@+ID/progressbar" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_centerInParent="true" androID:visibility="visible" /> <WebVIEw androID:ID="@+ID/web_engine" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:layout_alignParentleft="true" androID:layout_alignParenttop="true" androID:visibility="gone" /></relativeLayout>
我使用relativeLayout与androID:layout_centerInParent =“true”,它比linearLayout更好.
干杯
总结以上是内存溢出为你收集整理的Android ProgressBar .xml布局全部内容,希望文章能够帮你解决Android ProgressBar .xml布局所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)