5

我想为 Android 仪表板活动实现一个复杂的布局,如下图所示。

在此处输入图像描述

这里对于某些单元格,应该像这样添加多个文本视图,例如:

在此处输入图像描述

这里将使用异步任务从 Web 服务加载一些文本视图的文本。只有一个图像视图应该是可点击的。
我想知道在 Android 中实现这种复杂布局的最佳方法是什么。我曾尝试使用带有 lianearlayouts 的线性布局来实现这一点,但它非常混乱而且非常复杂。然后我尝试将表格布局与 lianearlayouts 一起使用,但它也变得越来越复杂。然后我想到了使用带有线性布局的网格视图来做到这一点,但我想知道如何准确地做到这一点。
我仍处于学习阶段,我只是想要一个建议,什么是实现这种布局的最佳方法,我应该使用什么类型的布局以及在哪里使用。我不需要完整的实施。

提前致谢。

4

5 回答 5

7

使用 Android Percent Support Lib 可以很容易地解决这类问题,

在此处输入图像描述

结帐要点: https ://gist.github.com/shekarrex/5458f697c02e5619b0e2

于 2015-06-28T16:29:21.123 回答
3

看到 GridLyout 会帮助你.. GridLayout and Row/Column Span Woe

http://www.techotopia.com/index.php/Working_with_the_Android_GridLayout_in_XML_Layout_Resources

于 2013-10-24T10:01:38.520 回答
2

更新:正如我们所知,API 级别 26 已弃用百分比支持库。ConstraintLayout这是实现相同平面 xml 结构的新方法。

更新了 Github 项目

更新示例:

<android.support.constraint.ConstraintLayout 
    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">

    <TextView
        android:id="@+id/fifty_thirty"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ffff8800"
        android:gravity="center"
        android:text="@string/fifty_fifty_text"
        android:textColor="@android:color/white"
        app:layout_constraintHeight_default="percent"
        app:layout_constraintHeight_percent="0.5"
        android:textSize="25sp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintWidth_default="percent"
        app:layout_constraintWidth_percent="0.5" />

    <TextView
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="#ffff5566"
        android:gravity="center"
        android:text="@string/fifty_fifty_text"
        android:textColor="@android:color/white"
        android:textSize="25sp"
        app:layout_constraintHeight_default="percent"
        app:layout_constraintHeight_percent="0.5"
        app:layout_constraintLeft_toRightOf="@id/fifty_thirty"
        app:layout_constraintTop_toBottomOf="@id/fifty_thirty"
        app:layout_constraintWidth_default="percent"
        app:layout_constraintWidth_percent="0.5" />

</android.support.constraint.ConstraintLayout>

已弃用 任何人都需要一个简单的演示来使用百分比支持库。

代码和概念在这里。

<android.support.percent.PercentRelativeLayout
   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">
    <TextView
        android:id="@+id/fifty_huntv"
        android:background="#ffff8800"
        android:text="50% - 50%"
        android:textColor="@android:color/white"
        style="@style/STYLE_PERCENT_TV"
        app:layout_heightPercent="50%"
        app:layout_widthPercent="50%" />
    <TextView
        android:id="@+id/comp2_twenty_fifty_tv"
        android:layout_toRightOf="@id/fifty_huntv"
        android:background="#ffff5566"
        android:text="20%-50%"
        style="@style/STYLE_PERCENT_TV"
        app:layout_heightPercent="20%"
        app:layout_widthPercent="50%"
        />

    <TextView
        android:id="@+id/comp2_ten_fifty_tv"
        android:layout_below="@id/comp2_twenty_fifty_tv"
        android:layout_toRightOf="@id/fifty_huntv"
        android:background="#aa3628cc"
        android:text="30%-50%"
        style="@style/STYLE_PERCENT_TV"
        app:layout_heightPercent="30%"
        app:layout_widthPercent="50%"
        />
    <TextView
        android:id="@+id/century_50_tv"
        android:layout_below="@id/fifty_huntv"
        android:background="#aacacc46"
        android:text="50%-100%"
        style="@style/STYLE_PERCENT_TV"
        app:layout_heightPercent="50%"
        app:layout_widthPercent="100%"
        />
</android.support.percent.PercentRelativeLayout>

WithIn styles.xml

 <style name="STYLE_PERCENT_TV">
        <item name="android:height">0dp</item>
        <item name="android:width">0dp</item>
        <item name="android:gravity">center</item>
        <item name="android:textColor">@android:color/white</item>
        <item name="android:textSize">25sp</item>
    </style>

Github 项目在这里

复杂设计百分比

于 2015-09-08T06:31:51.720 回答
1

如果我需要实现这样的布局,我会将其拆分为 3 个部分:
1. 从顶部到屏幕截图中的红色 TextView 的一行。
2.从橙色“2 TextViews”到底部的左列。
3. 右栏有绿色和灰色的TextViews。

对于每个部分,您至少有 3 个选择:
1. 如果该部分有一些严肃的逻辑,我会使用Fragments,因为它们有一个生命周期。
2. 如果逻辑小并且您不想在活动中实现所有内容,我会使用自定义 View
3. 如果只想拆分布局 xml,请检查包含标签。
4. 您可以使用 1 - 3 的任何排列,并以适合您需要的不同方式拆分布局。

于 2013-10-24T07:16:56.707 回答
0

最好的方法是您可以使用Fragmentsinclude标签来添加其他 xml 布局

于 2013-10-24T07:40:14.017 回答