0

我看到一些关于“ImageView”的问题,但我需要一个FrameLayout.

我有一个 FrameLayout,我需要它的width:height= 2:1,宽度是fill_parent. 框架布局中有很多图像视图,我可以设置它们width=fill_parentheight=fill_parent.

我没有找到方法来做到这一点,请帮助。

我的xml代码是:

<FrameLayout
        android:id="@+id/cardView"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        android:layout_centerInParent="true">
    <ImageView
            android:id="@+id/frameView"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:scaleType="fitXY"
            android:src="@drawable/card_style1"
            />
</FrameLayout>
4

1 回答 1

1

看看这是不是你想要的:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.your_layout);
    final FrameLayout target = (FrameLayout) findViewById(R.id.frame_id);
    target.post(new Runnable() {

        @Override
        public void run() {             
            int width = target.getWidth();
            int height = width / 2;                
            LayoutParams lp = target.getLayoutParams(); 
            lp.height = height;
            target.setLayoutParams(lp);
        }

    });
}   
于 2012-09-11T09:17:50.767 回答