android – 如何在LinearLayout上设置最大宽度,使其在横向模式下不伸展?
作者:互联网
我的应用程序在纵向模式下看起来很棒,但它在风景中延伸并且看起来很糟糕.我知道我可以为横向制作一个单独的布局,但我宁愿只设置我的根元素的最大宽度,这样横向模式只会在两侧产生一些空白区域.有没有办法做到这一点?
解决方法:
保持不同的布局文件是一个正确的解决方案,但它增加了项目的复杂性(如果设计师重新设计视图布局,则必须维护多个文件).
如果您只需要更改LinearLayout的宽度,则可以执行以下操作.将一个xml文件保留在布局文件夹中,并为其指定值
<LinearLayout
style="@style/width_match_parent_max_200"
android:layout_height="wrap_content">
然后,在你的values-600dp / styles.xml中写:
<resources>
<style name="width_match_parent_max_200">
<item name="android:layout_width">200dp</item>
</style>
</resources>
在您的values / styles.xml中:
<resources>
<style name="width_match_parent_max_200">
<item name="android:layout_width">match_parent</item>
</style>
标签:android,android-layout,android-linearlayout,android-orientation 来源: https://codeday.me/bug/20190528/1172945.html