我必须进行这种布局,但我不知道如何使用xml代码使其适合屏幕。有一种方法可以使用java代码并获得屏幕分辨率,然后设置所有组件的宽度和高度,但我认为这不是一个好主意。使用网格布局你不能适应元素,使用线性你不能像这样在一行中做几个。我也尝试使用很少的线性布局,但在这种情况下,它不可能像我想要的那样定位元素。你猜怎么解决它?!
如何显示此类自定义网格组件
答案 0 :(得分:0)
您应该使用多个嵌套的相对布局,并使用layout_weight属性来正确调整它们的大小,并使用layout_below,layout_toRightOf等来按照您想要的方式定位它们。
请参阅here。
答案 1 :(得分:0)
更新:正如我们所知,支持库百分比已从API级别26弃用。ConstraintLayout
是实现相同平面xml结构的新方法。
更新了样本
<android.support.constraint.ConstraintLayout
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="match_parent">
<TextView
android:id="@+id/fifty_thirty"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#ffff8800"
android:gravity="center"
android:text="@string/fifty_fifty_text"
android:textColor="@android:color/white"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.5"
android:textSize="25sp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent="0.5" />
<TextView
android:layout_width="0dp"
android:layout_height="0dp"
android:background="#ffff5566"
android:gravity="center"
android:text="@string/fifty_fifty_text"
android:textColor="@android:color/white"
android:textSize="25sp"
app:layout_constraintHeight_default="percent"
app:layout_constraintHeight_percent="0.5"
app:layout_constraintLeft_toRightOf="@id/fifty_thirty"
app:layout_constraintTop_toBottomOf="@id/fifty_thirty"
app:layout_constraintWidth_default="percent"
app:layout_constraintWidth_percent="0.5" />
</android.support.constraint.ConstraintLayout>
<强>已过时强>
好吧,不要担心你的布局可以通过android的百分比支持库以任何方式适合你。
考虑这个简单的示例示例。
<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="match_parent">
<TextView
android:id="@+id/fifty_huntv"
android:background="#ff7acfff"
android:text="20% - 50%"
android:textColor="@android:color/white"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_heightPercent="20%"
app:layout_widthPercent="50%" />
<TextView
android:layout_toRightOf="@id/fifty_huntv"
android:background="#ffff5566"
android:text="80%-50%"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_heightPercent="80%"
app:layout_widthPercent="50%"
/>
</android.support.percent.PercentRelativeLayout>
太棒了!!!