图像以横向模式拉伸

时间:2016-11-22 23:24:59

标签: java android imageview android-linearlayout landscape

(图片底部附有图片)

我有这样的布局:

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

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="match_parent"
        android:paddingTop="10dp"
        android:layout_height="match_parent"
        android:id="@+id/viewsLayout"
        android:layout_weight="1.0">
    </LinearLayout>

</LinearLayout>

我想将3x3球的图像视图添加到内部线性布局&views; viewLayout&#39;所以在适当的课程中我会这样做:

    LinearLayout main = (LinearLayout) findViewById(R.id.viewsLayout);
    main.setWeightSum(3.0f);

    for (int i = 0; i < 3; ++i) {
        LinearLayout currentRow = new LinearLayout(this);
        currentRow.setOrientation(LinearLayout.HORIZONTAL);
        LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, 0);
        params.weight = 1.0f;
        currentRow.setLayoutParams(params);

        for (int j = 0; j < 3; ++j) {
            ImageView viewOne = new ImageView(this);
            viewOne.setBackgroundResource(R.drawable.ball);
            params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT, 1.0f);
            viewOne.setLayoutParams(params);
            viewOne.setScaleType(ImageView.ScaleType.FIT_CENTER);
            viewOne.setAdjustViewBounds(true);
            currentRow.addView(viewOne);
        }
        main.addView(currentRow);
    }

问题是在横向模式下,球会变成椭圆形(太拉伸),如附图中所示。

我看到这个问题已经被问到,并且不建议避免使用横向模式。 (我添加了一张图片,以方便搜索者查找。)我看到解决方案是为横向模式创建一个新的布局,但我有很多布局,因此为每个布局创建另一个布局景观模式可能很糟糕。有更好的解决方案吗?如果没有,我是否必须设置linearLayout \ ImageView的宽度为dp而不是MATCH_PARENT?

如果解决方案很短且更容易编写,请告诉我。enter image description here

2 个答案:

答案 0 :(得分:1)

您正在使用R.drawable.ball。是png文件吗?也许你应该尝试9补丁文件,避免在编辑器中为9补丁文件格式拉伸文件。

如果你的情况合适,你可以通过drawable shapes

画一个球

答案 1 :(得分:1)

首先,您的图像尺寸可能不够宽,无法适应横向模式。为此,您需要一个单独的图像才能适应横向模式。

其次,您可以尝试创建一个将在横向模式下触发的横向布局。创建一个layout-land文件夹并为其创建一个单独的xml。

参考这些链接, https://developer.android.com/training/multiscreen/screensizes.html

https://developer.android.com/training/multiscreen/screendensities.html