Gulan查询UI排布

遇到一个问题,如何在相对布局里把两个item放在同一行,而且高度一样呢?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >
 
 <TextView android:id="@+id/keywordLabel"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="关键字:"
      android:paddingTop="15px"
      />
     
 <EditText android:id="@+id/keywordEditText"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_toRightOf="@id/keywordLabel"
      android:layout_alignBaseline="@id/keywordLabel"
       />
     
<Button android:id="@+id/findKeywordButton"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_below="@id/keywordEditText"
      android:layout_alignRight="@id/keywordEditText"
      android:text="查找"
       />
     
 <TextView android:id="@+id/ChapterTextView"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="章节查询"
      android:layout_below="@id/findKeywordButton"
      android:paddingTop="15px" />
     
 <TextView android:id="@+id/SuraIDText"
     android:text="章:"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_below="@id/ChapterTextView"
      android:layout_alignBottom="@+id/SuraIDSpinner"
       />
     
 <Spinner android:id="@+id/SuraIDSpinner"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/SuraIDText"
        />
     
 <TextView android:id="@+id/AyaIDText"
     android:text="节:"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_below="@id/SuraIDText"
      android:layout_weight="1.0"
      android:layout_centerInParent="true"
       />
  
 <Spinner android:id="@+id/AyaIDSpinner"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/AyaIDText"
        android:layout_alignBaseline="@+id/AyaIDText"
        android:layout_weight="1.0"
        />
</RelativeLayout>

  

posted @   hailong  阅读(362)  评论(0编辑  收藏  举报
编辑推荐:
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
阅读排行:
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 地球OL攻略 —— 某应届生求职总结
· 提示词工程——AI应用必不可少的技术
· Open-Sora 2.0 重磅开源!
· 字符编码:从基础到乱码解决
点击右上角即可分享
微信分享提示