• Gulan查询UI排布


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

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

      

  • 相关阅读:
    poj-1001 求高精度幂
    ECS训练营Day1—基于阿里云ECS、VuePress搭建静态网站
    阿里云免费领马克杯答案
    白盒测试之逻辑覆盖 简单易懂~
    如何合并多个PPT?
    failed to connect to gitee.com/github/gitlab port 443: timed out之类的错误
    解决 These dependencies were not found: * core-js/modules/es6.array.fill in xxx 之类的问题
    vue内嵌iframe跨域通信
    Luffy之课程详情页
    Flask之SQLAlchemy,flask_session以及蓝图
  • 原文地址:https://www.cnblogs.com/xiangshancuizhu/p/3372695.html
Copyright © 2020-2023  润新知