Android:如何维护整个应用的宽高比?

时间:2016-11-15 01:10:26

标签: android

我想为整个应用程序维持一个9:16的方面,而不是单个视图。 IE浏览器。在3:4的平板电脑上,这样的事情:

enter image description here

我尝试使用PercentRelativeLayout作为父级,但是没有用。 我尝试了什么:

<android.support.percent.PercentRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:layout_aspectRatio="50%"
    app:layout_widthPercent="100%"
    android:id="@+id/startmenu">
    </android.support.percent.PercentRelativeLayout>

我正在使用库的23.1.1版本

0 个答案:

没有答案