在axml或c#中缩放视图

时间:2017-07-27 07:45:31

标签: c# android android-layout xamarin.android

目前我正在尝试创建一个主要有横向视图和主视图的小应用程序。 horizo​​ntalscrollview包含一个linearlayout,在我的BoxItem.axml文件中定义了一堆BoxItems。一个BoxItem也显示在主视图上。

问题是我需要缩小项目以适应滚动视图。我希望这些项目能够自动调整大小(及其所有子视图)以适合父视图(高度)。

如果有可能我还想实现一个函数,在代码中设置大小(但这不是我主要考虑的问题)。

BoxItem.axml:

<?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/Box"
    android:gravity="center_vertical">
    <TextView
        android:text="Shelf"
        android:id="@+id/Shelf"
        android:textColor="#009900"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="30sp" />
    <TextView
        android:text="ProductName"
        android:id="@+id/Name"
        android:textColor="#009900"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="30sp" />
    <TextView
        android:text="Barcode"
        android:id="@+id/Barcode"
        android:textColor="#009900"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="30sp" />
    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/linearLayout3"
        android:gravity="center">
        <TextView
            android:text="10"
            android:id="@+id/StockCurrent"
            android:textColor="#009900"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:textSize="30sp" />
        <TextView
            android:text="/"
            android:id="@+id/textView4"
            android:textColor="#009900"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:textSize="30sp" />
        <TextView
            android:text="10"
            android:id="@+id/StockMax"
            android:textColor="#009900"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:textSize="30sp" />
    </LinearLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

  

我希望这些项目能够自动调整大小(及其所有子视图)以适合父视图(高度)。

您需要API 11或更高版本来扩展View。用法如下:

 LinearLayout ll = FindViewById<LinearLayout>(Resource.Id.Box);
 float scalingFactor = 0.5f; // scale down to half the size
 ll.ScaleX = scalingFactor;
 ll.ScaleY = scalingFactor;

但规模大小难以计算。

替代选择,建议使用CardView来实现此功能。