我有一个片段的布局,这个片段将在FragmentActivity的ScrollVIEw中.
这是我片段的布局:
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/user_pro_main_vIEw" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical" > <TextVIEw androID:ID="@+ID/text_state" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:text="@string/layout_state" androID:textAppearance="?androID:attr/textAppearanceLarge" /></linearLayout>
我是否必须更改androID:layout_height =“match_parent”以使其在eclipse的设计器上更大?
如果我想在eclipse设计器上看到更大的布局,我该怎么办?
解决方法 你总是可以在layout_height中明确设置精确的dp值,但当然大多数时候我认为你不想要一个固定值,所以以编程方式进行.linearLayout yourLayout; // Get it by findVIEwByID()yourLayout.setLayoutParams(new linearLayout.LayoutParams(VIEwGroup.LayoutParams.MATCH_PARENT,your_calculated_height));总结
以上是内存溢出为你收集整理的android – 如何设计比手机屏幕更大的布局?全部内容,希望文章能够帮你解决android – 如何设计比手机屏幕更大的布局?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)