22

正方形のレイアウト用に独自のクラスを作成します。

public class SquareLayout extends LinearLayout{

    public SquareLayout(Context context) {
        super(context);
    }

    public SquareLayout(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    public SquareLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }


    @Override public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        int width = MeasureSpec.getSize(widthMeasureSpec);
        int height = MeasureSpec.getSize(heightMeasureSpec);
        int size = width > height ? height : width;
        setMeasuredDimension(size, size);
    }

次に、私のxmlで:

...
        <com.myApp.SquareLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_gravity="center_horizontal"
            android:orientation="horizontal" >

            <ImageView
                android:id="@+id/cellImageView"
                android:adjustViewBounds="true"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="2dp"
                android:padding="2dp"
                android:scaleType="centerCrop"
                android:src="@drawable/image" />
        </com.myApp.SquareLayout>
...

私のJavaコードには何も書かれていません。しかし、代わりに私のレイアウトと私の画像の場合、白い長方形しか見えません...

何が間違っていますか?

4

3 に答える 3

21

// super.onMeasure(widthMeasureSpec, widthMeasureSpec); を呼び出すのを忘れています。

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {

    super.onMeasure(widthMeasureSpec, widthMeasureSpec);
    int width = MeasureSpec.getSize(widthMeasureSpec);
    int height = MeasureSpec.getSize(heightMeasureSpec);
    int size = width > height ? height : width;
    setMeasuredDimension(size, size);

}

// xml ファイル

<com.example.testapplication.SquareLayout
    android:id="@+id/layout"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_gravity="center_horizontal"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/cellImageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="2dp"
        android:adjustViewBounds="true"
        android:padding="2dp"
        android:scaleType="centerCrop"
        android:src="@drawable/ic_launcher" />

  </com.example.testapplication.SquareLayout> 
于 2013-05-25T10:10:36.250 に答える
9

setMeasuredDimension同じ手法を RelativeLayout に適用すると、直接呼び出すときに問題が発生しました。下端に正しく合わせることができませんでした。代わりにsuper.onMeasure()、新しいメジャー スペックで呼び出すように変更すると、うまく機能しました。

  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    int width = MeasureSpec.getSize(widthMeasureSpec);
    int height = MeasureSpec.getSize(heightMeasureSpec);
    int size = Math.min(width, height);
    super.onMeasure(MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY),
        MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY));
  }
于 2013-10-21T14:56:12.773 に答える
6

編集:

ConstraintLayoutが新しい標準になり、この機能を提供するため、以下のソリューションは非推奨になりました。

元の回答:

Android チームが解決策を提供してくれましたが、誰もそれについて知りません。Percent Support Libraryから次の 2 つのクラスを確認してください。

ビューの比率を強制したい場合は、これらのレイアウトのいずれかに配置する必要があります。したがって、この場合、LinearLayoutサブクラスではなく、適切な縦横比のレイアウトの 1 つに standard を配置する必要があります。を使用する場合の例PercentFrameLayout:

<android.support.percent.PercentFrameLayout
         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">
     <LinearLayout
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         app:layout_aspectRatio="100%">
         <!-- Whatever subviews you want here -->
     </LinearLayout>
 </android.support.percent.PercentFrameLayout>

これで、すべてのビューが正方形の線形レイアウトに含まれるようになります。

gradle依存関係を追加することを忘れないでくださいcompile 'com.android.support:percent:23.3.0' 必要に応じてバージョン番号を調整してください

于 2015-10-23T20:39:43.597 に答える