如何劃分五等分屏幕。 我使用XML文件作爲backgorung爲界五等分劃分屏幕
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="oval">
<solid android:color="#59d5fe"/>
</shape>
</item>
</selector>
,這是代碼
LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/img6"
android:weightSum="5"
android:orientation="horizontal" >
<ImageView
android:layout_width="0dp"
android:layout_weight="1"
android:background="@drawable/vectorshape"
android:scaleType="fitXY"
android:id="@+id/img1"
android:layout_height="wrap_content"/>
<ImageView
android:layout_width="0dp"
android:background="@drawable/vectorshape"
android:scaleType="fitCenter"
android:layout_weight="1"
android:id="@+id/img2"
android:layout_height="wrap_content"/>
<ImageView
android:layout_width="0dp"
android:background="@drawable/vectorshape"
android:scaleType="fitCenter"
android:layout_weight="1"
android:id="@+id/img3"
android:layout_height="wrap_content"/>
<ImageView
android:layout_width="0dp"
android:background="@drawable/vectorshape"
android:scaleType="fitCenter"
android:id="@+id/img4"
android:layout_weight="1"
android:layout_height="wrap_content"/>
<ImageView
android:layout_width="0dp"
android:layout_weight="1"
android:scaleType="fitCenter"
android:id="@+id/img5"
android:background="@drawable/vectorshape"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
我特別想要的高度尺寸是相同寬度的大小,但它是直到在dp中預定義大小爲止。
以及如何將其與活動連接因爲我得到了這個錯誤Android.Views.InflateException:二進制XML文件行#1:二進制XML文件行#1:錯誤膨脹類SharpText_Demo.Sq uareImageView上SetContentView – Merian
漂亮的解釋錯誤可能是因爲在註冊時SharpText_Demo.SquareImageView與較低的s。謝謝。 – Merian