Android复杂的布局设计建议

时间:2013-10-22 15:21:13

标签: android android-layout android-intent android-fragments android-emulator

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

enter image description here

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

enter image description here

此处将使用Async任务从Web服务加载某些文本视图的文本。只能点击一个图像视图。
我想知道在Android中实现这种类型的复杂布局的最佳方法是什么。 我已经尝试使用带有lianearlayouts的线性布局来实现这一点,但这是一个巨大的混乱和很多复杂。然后我尝试将tablelayout与lianearlayouts一起使用,但它也变得越来越复杂。然后我想用线性布局的网格视图来做这个,但我很想知道如何准确地做到这一点 我还在学习阶段,我只是想知道实现这种布局的最佳方法是什么类型的布局我应该使用哪里。我不需要完整的实施。

提前致谢。

5 个答案:

答案 0 :(得分:7)

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

enter image description here

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

答案 1 :(得分:3)

答案 2 :(得分:2)

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

Updated Github Project

更新了样本

<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>

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

  

CODE and CONCEPT HERE.

<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 Project HERE

percent complex design

答案 3 :(得分:1)

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

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

答案 4 :(得分:0)

最好的方法是使用片段包含标记添加其他xml布局