Android Drawable 根据设备屏幕尺寸变化

标签 android android-layout android-drawable

我想设计下面的UI。为了实现同样的目标,我尝试使用可绘制对象。 但问题是:drawable 在不同的屏幕尺寸上显示不同。 对于屏幕尺寸 6.0:可绘制对象为椭圆形,下方:为圆形。

UI设计尝试实现:

enter image description here

内容布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:orientation="horizontal"
    android:padding="16dp"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.mediaagility.drawablesample.MainActivity"
    tools:showIn="@layout/activity_main">

    <LinearLayout
        android:id="@+id/linear1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/linear">

        <TextView
            android:id="@+id/textview1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/bg_layout"
            android:gravity="center"
            android:text="10"
            android:textColor="@android:color/white"
            android:textSize="22sp" />

    </LinearLayout>

    <LinearLayout
        android:id="@+id/linear2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="8dp"
        android:background="@drawable/linear">

        <TextView
            android:id="@+id/textview2"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/bg_layout"
            android:gravity="center"
            android:text="10"
            android:textColor="@android:color/white"
            android:textSize="22sp" />

    </LinearLayout>

    <LinearLayout
        android:id="@+id/linear3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="8dp"
        android:background="@drawable/linear">

        <TextView
            android:id="@+id/textview3"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@drawable/bg_layout"
            android:gravity="center"
            android:text="10"
            android:textColor="@android:color/white"
            android:textSize="22sp" />

    </LinearLayout>
</LinearLayout>

线性布局可绘制:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:innerRadius="0dp"
android:shape="ring"
android:thicknessRatio="2"
android:useLevel="false">


    <stroke
        android:width="3dip"
        android:color="#FFB300" />
    <corners android:radius="10dip"
        />
    <padding
        android:bottom="8dp"
        android:left="8dp"
        android:right="8dp"
        android:top="8dp" />
    </shape>

bg_layout:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:innerRadius="0dp"
    android:shape="ring"
    android:thicknessRatio="2"
    android:useLevel="false">

    <gradient
        android:angle="-90"
        android:endColor="#1c75d1"
        android:gradientRadius="20dp"
        android:type="linear"
        android:startColor="#609ede" />


    <padding
        android:bottom="8dp"
        android:left="8dp"
        android:right="8dp"
        android:top="8dp" />
</shape>

ma​​in.class:

 LinearLayout linear1 = (LinearLayout) findViewById(R.id.linear1);
        LinearLayout linear2 = (LinearLayout) findViewById(R.id.linear2);
        LinearLayout linear3 = (LinearLayout) findViewById(R.id.linear3);


        LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
                LinearLayout.LayoutParams.WRAP_CONTENT,
                LinearLayout.LayoutParams.WRAP_CONTENT
        );

        layoutParams.width = ApplicationUtils.getScreenWidth(this) / 4 +50;
        layoutParams.height = ApplicationUtils.getScreenWidth(this) / 4 +50;
        layoutParams.gravity = Gravity.CENTER_HORIZONTAL | Gravity.CENTER_VERTICAL;
        layoutParams.leftMargin = ApplicationUtils.dpToPx(4);
        layoutParams.rightMargin = ApplicationUtils.dpToPx(4);

        linear1.setLayoutParams(layoutParams);
        linear2.setLayoutParams(layoutParams);
        linear3.setLayoutParams(layoutParams);

请帮助我建议如何设计以下与屏幕尺寸无关的 UI。

最佳答案

因为您在LinearLayout中设置固定大小,这就是它拉伸(stretch)的原因。 如果不需要,请将其删除。

你的xml看起来不错,你需要在这里解决

layoutParams.width = ApplicationUtils.getScreenWidth(this) / 4 +50;
layoutParams.height = ApplicationUtils.getScreenWidth(this) / 4 +50;

如果您想支持固定尺寸​​的多屏幕,那么您应该为不同的 dpi 文件夹使用dimens.xml

  • 值-sw320dp-hdpi

  • 值-sw320dp-mdpi

  • 值-sw320dp-xhdpi
  • 值-sw320dp-xxhdpi
  • 值-sw320dp-xxxhdpi

此答案将指导您如何使用 dimens.xmlone , two

关于Android Drawable 根据设备屏幕尺寸变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43229794/

相关文章:

javascript - react 原生 : App crashes on start due to SoLoader issue

Android RelativeLayout 和 OnClickListener

java - 平板电脑可以打电话吗? (电话)

android - IBM Worklight - 推送通知功能在 Android 模拟器中不起作用

java - JavaFX 的奇怪 Gluon 项目结构 - Android 移植

android - 在 Android 中设计 ListView

android - 如何在 android 中绘制动画 View ?

android - ListView 上的动画背景

android - Android Studio 异常解析Vector Asset

android - 我在哪里可以找到默认的 android xml 绘图?