zoukankan      html  css  js  c++  java
  • 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>
    

      

  • 相关阅读:
    AFN 控制字符报错(无法解析)
    HTTP POST请求报文格式分析与Java实现文件上传
    xcrun
    Makefile选项CFLAGS,LDFLAGS,LIBS
    Xcode 编译错误
    iOS 11 适配
    机器学习算法之决策树
    Python extend 和 append 的区别
    Python warning_function name should be lowercase
    使用matplotlib绘制导数图像
  • 原文地址:https://www.cnblogs.com/xiangshancuizhu/p/3372695.html
Copyright © 2011-2022 走看看