0

これは数え切れないほど聞かれていることは承知していますが、まだ自分で解決策を見つけていません。GridLayoutを使用せずに、以下のようにレイアウトされた単純なボタンのセットを作成したいと思います。また、TableLayout や RelativeLayout についてもあまりうまくいきませんでした。私にとってうまくいくのは、まあ、LinearLayoutです:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="5dp" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal"
        android:padding="5dp" >

        <Button
            android:id="@+id/button1"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#d0b0b0"
            android:paddingRight="10dp"
            android:textSize="15dip" />

        <View
            android:layout_width="10dp"
            android:layout_height="0dp"
            android:background="#808080" />

        <Button
            android:id="@+id/button2"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#a09a09"
            android:textSize="15dip" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal"
        android:padding="5dp" >

        <Button
            android:id="@+id/button3"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#456456"
            android:padding="10dp"
            android:textSize="15dip" />
    </LinearLayout>

</LinearLayout>

しかし、「ネストされたウェイトはパフォーマンスに悪い」という警告が表示されます。本当に?こんなにシンプルなレイアウトで?警告を無視できますか? これを行う他の(エレガントな?)方法はありますか?

LinearLayout、3 つのボタン

4

3 に答える 3

3

更新:私たちが知っているように、パーセント サポート ライブラリは API レベル 26 から廃止されました。これConstraintLayoutは、同じフラットな xml 構造を実現する新しい方法です。

更新された Github プロジェクト

更新されたサンプル:

<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 サポート ライブラリによって、レイアウトをパーセンテージ比率に均等に分割する素晴らしいソリューションが得られました。

完全に面倒なことは避けてLinearLayout weightsください。

compile 'com.android.support:percent:23.0.0'

コードとコンセプト

Github プロジェクト

この単純なレイアウトを検討してください。

パーセント レイアウトのデモ

<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:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ff7acfff"
        android:text="20% - 50%"
        android:textColor="@android:color/white"
        app:layout_heightPercent="20%"
        app:layout_widthPercent="50%" />
    <TextView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_toRightOf="@id/fifty_huntv"
        android:background="#ffff5566"
        android:text="80%-50%"
        app:layout_heightPercent="80%"
        app:layout_widthPercent="50%"
        />

</android.support.percent.PercentRelativeLayout>

ビンゴが完成しました。本当に素晴らしいです :-)

于 2015-09-06T08:06:00.590 に答える
1

現在のレイアウトファイルを調整することで、ネストされたレイアウトの警告を回避できます。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="5dp" >

    <View
        android:id="@+id/anchor"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_centerVertical="true" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@id/anchor"
        android:layout_alignParentTop="true"
        android:padding="5dp" >

        <Button
            android:id="@+id/button1"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#d0b0b0"
            android:paddingRight="10dp"            
            android:textSize="15dip" />

        <View
            android:layout_width="10dp"
            android:layout_height="0dp"
            android:background="#808080" />

        <Button
            android:id="@+id/button2"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="#a09a09"            
            android:textSize="15dip" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_below="@id/anchor"
        android:orientation="horizontal"
        android:padding="5dp" >

        <Button
            android:id="@+id/button3"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#456456"
            android:padding="10dp"            
            android:textSize="15dip" />
        <!-- textSize should be set in sp units, like 15sp -->
    </LinearLayout>

</RelativeLayout> 

LinearLayoutまた、シングルをラップしているを削除することもできますButton(そして、に5dpのマージンを追加しますButton)。

于 2012-07-28T04:56:58.150 に答える
-1

Android レイアウトに関するもう 1 つの興味深い詳細は、ネストされたウェイトの lint 警告を削除する効果もあります。ボタンをマージファイルに入れると、次のようになります。

<merge xmlns:android="http://schemas.android.com/apk/res/android" >

    <Button
        android:id="@+id/button1"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="#d0b0b0"
        android:textSize="15dip" />

</merge>

.. 他のボタン (および作成したスペーサー ビュー) についても同じことを行い、これらのマージ xml ファイルを次のようにメインの xml ファイルに含めます。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:padding="5dp" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal"
        android:padding="5dp" >

        <include layout="@layout/button1" />

        <include layout="@layout/spacer" />

        <include layout="@layout/button2" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:orientation="horizontal"
        android:padding="5dp" >

        <include layout="@layout/button3" />
    </LinearLayout>

</LinearLayout>

.. 糸くずの警告をすべて失います。糸くずは問題を見逃しているだけですか、それともこの方法で膨らませる方が簡単ですか?

(私にとって)読みやすくなるだけでなく、再利用の可能性がたくさんあります。XMLによるI <3レイアウト!

于 2012-08-03T17:36:08.360 に答える