我正在开发一个简单的用户界面(y顺序)的广播应用程序:
但我面临屏幕尺寸问题。
封面需要保持在顶部,并保持1:1的比例(如果是房间)。 条形音箱位于底部。
带有曲目信息和播放/暂停按钮的部分需要调整自身大小以占用剩余空间并将内容置于其中心。
我通过使用权重为1的LinearLayout实现中间布局,但在小屏幕上,内容被裁剪。
我尝试多种解决方案(Coordinator,Relative,...),但没有人按预期工作。
当我的内容未被裁剪时,它会对齐底部而不是居中。
这是我在普通和大屏幕上按预期工作的实际XML,但在小屏幕上裁剪 android:id =“@ + id / content”。
<LinearLayout
android:id="@+id/content_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<include
android:id="@+id/layout_cover"
layout="@layout/layout_cover"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:elevation="1dp" />
<LinearLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:orientation="vertical">
<include
android:id="@+id/layout_informations"
layout="@layout/layout_informations"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/medium_margin"
android:elevation="2dp" />
<include
android:id="@+id/layout_actionbar"
layout="@layout/layout_actionbar"
android:layout_width="match_parent"
android:layout_height="@dimen/layout_actionbar_height"
android:layout_margin="@dimen/common_margin" />
</LinearLayout>
<include
android:id="@+id/layout_soundbar"
layout="@layout/layout_soundbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
提前感谢您的帮助。
的Fab
答案 0 :(得分:0)
试试这个
选项1
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"/>
<ImageView
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:scaleType="centerCrop"
android:src="@drawable/ic_audiotrack_black_24dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:orientation="vertical"
android:gravity="center"
android:background="@color/colorPrimary">
<!--Title play pause-->
<FrameLayout
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@color/colorPrimaryDark">
<!--Soundbar-->
</LinearLayout>
</LinearLayout>
相册图像将占用最大空间。如果屏幕尺寸很小,则会裁剪相册图像。
选项2
将ImageView
换成ConstraintLayout
<LinearLayout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"/>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<ImageView
android:layout_width="0dp"
android:layout_height="0dp"
android:src="@drawable/ic_audiotrack_black_24dp"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginBottom="0dp"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="0dp"
android:layout_marginRight="0dp"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintDimensionRatio="w,1:1"
app:layout_constraintHorizontal_bias="0.538"
app:layout_constraintVertical_bias="0.0" />
</android.support.constraint.ConstraintLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="100dp"
android:orientation="vertical"
android:gravity="center"
android:background="@color/colorPrimary">
<!--Title play pause-->
<FrameLayout
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_gravity="center"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@color/colorPrimaryDark">
<!--Soundbar-->
</LinearLayout>
</LinearLayout>
在这种情况下,ImageView
将始终保持1:1的比例,如果没有提供足够的空间,则会变小。