0 0

关于Android布局的问题5

用户名: <EditText>
密码 <EditText>

 

这种布局怎么实现

 

我的代码为什么不行呢。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" android:layout_width="fill_parent"
	android:layout_height="fill_parent" android:background="@drawable/welcom_back"
	android:layout_gravity="center|center_vertical" android:gravity="center">

	<RelativeLayout android:layout_width="300dip" android:id="@+id/linearLayout2"
		android:layout_height="wrap_content" android:gravity="center|center_vertical"
		android:orientation="vertical" android:layout_gravity="center"
		>
		
		<EditText android:text=""
			android:id="@+id/username" 
			android:layout_width="100dip" 
			android:layout_height="wrap_content"
			android:layout_alignParentRight="false"
			android:layout_marginLeft="2dip"/>
			
		<TextView android:text="用户名:"
			android:id="@+id/textView1" 
			android:layout_width="wrap_content" 
			android:layout_height="wrap_content"
			android:layout_toLeftOf="@id/username"
      		android:layout_alignTop="@id/username"
      		android:textSize="25px"/>
      		
      	<EditText android:text=""
			android:id="@+id/password" 
			android:layout_width="100dip" 
			android:layout_height="wrap_content"
			android:layout_marginLeft="2dip"/>
			
			
		<Button android:layout_width="wrap_content" android:id="@+id/but1"
			android:text="登录" android:layout_height="wrap_content"
			android:gravity="center"/>
			
	</RelativeLayout>

</LinearLayout>

 

2011年3月07日 13:54

4个答案 按时间排序 按投票排序

0 0

采纳的答案

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/loginPageLayout"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <TextView 
        android:id="@+id/loginUI_Label" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:text="@string/LoginUI"
        android:textSize="14pt"
        /> 
    <EditText
        android:id="@+id/loginUsername" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:layout_below="@id/loginUI_Label"  
        android:paddingLeft="60dip"/>
    <TextView android:id="@+id/loginUsername_Label" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
         android:layout_alignLeft="@id/loginUsername"
        android:layout_alignTop="@id/loginUsername"
        android:layout_marginTop="10dip"
        android:layout_marginLeft="5dip"
        android:text="@string/LoginUsernameLabel"
    />
    <EditText
        android:id="@+id/loginPassword" 
        android:layout_below="@id/loginUsername"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:password="true" 
        android:paddingLeft="55dip"
        />
     <TextView android:id="@+id/loginPassword_Label" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
         android:layout_alignLeft="@id/loginPassword"
        android:layout_alignTop="@id/loginPassword"
        android:layout_marginTop="10dip"
        android:layout_marginLeft="5dip"
        android:text="@string/LoginPasswordLabel"
    />
     <CheckBox
        android:id="@+id/loginCheckbox"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"
        android:layout_below="@id/loginPassword"
        android:layout_alignLeft="@id/loginPassword"
        android:hint="@string/checkboxRemberPwdLabel"
        android:checked="true"
        />
     <Button
        android:id="@+id/loginBtn" 
        android:layout_below="@id/loginPassword"
        android:layout_toRightOf="@id/loginCheckbox"
        android:layout_marginLeft="30dip"
        android:layout_width="100dip" 
        android:layout_height="wrap_content" 
        android:text="@string/btnLoginLabel"
        />
</RelativeLayout>

效果图:

2011年3月07日 13:54
0 0

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
	android:orientation="vertical" android:layout_width="fill_parent"
	android:layout_height="fill_parent" android:background="@drawable/white"
	android:layout_gravity="center|center_vertical" android:gravity="center">
	<RelativeLayout android:layout_width="300dip" android:id="@+id/linearLayout2"
		android:layout_height="wrap_content" android:gravity="center|center_vertical"
		android:orientation="vertical" android:layout_gravity="center"
		>
		<EditText android:text=""
			android:id="@+id/username" 
			android:layout_width="100dip" 
			android:layout_height="wrap_content"
			android:layout_alignParentRight="true"
			android:layout_marginLeft="2dip"/>
			
		<TextView android:text="用户名:"
			android:id="@+id/textView1" 
			android:layout_width="wrap_content" 
			android:layout_height="wrap_content"
			android:layout_toLeftOf="@id/username"
      		android:textSize="25px"/>
      </RelativeLayout>
      <RelativeLayout android:layout_width="300dip" android:id="@+id/linearLayout2"
		android:layout_height="wrap_content" android:gravity="center|center_vertical"
		android:orientation="vertical" android:layout_gravity="center"
		>
		<EditText android:text=""
			android:id="@+id/userpwd" 
			android:layout_width="100dip" 
			android:layout_height="wrap_content"
			android:layout_alignParentRight="true"
			android:layout_marginLeft="2dip"/>
			
		<TextView android:text="密码:"
			android:id="@+id/textView1" 
			android:layout_width="wrap_content" 
			android:layout_height="wrap_content"
			android:layout_toLeftOf="@id/userpwd"
      		android:textSize="25px"/>
			
	</RelativeLayout>

</LinearLayout>

2011年3月07日 14:56
0 0

用tablelayout

2011年3月07日 13:54
0 0


<EditText android:text=""
android:id="@+id/username"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_alignParentRight="false"
android:layout_marginLeft="2dip"/>

<TextView android:text="用户名:"
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/username"
      android:layout_alignTop="@id/username"
      android:textSize="25px"/>
     
          <EditText android:text=""
android:id="@+id/password"
android:layout_width="100dip"
android:layout_height="wrap_content"
android:layout_marginLeft="2dip"
                            android:layout_below="@+id/username"/>


<Button android:layout_width="wrap_content" android:id="@+id/but1"
android:text="登录" android:layout_height="wrap_content"
android:gravity="center"
android:layout_below="@+id/textView1"/>



添加红色的两句

2011年3月07日 13:54

相关推荐

    android布局_Android布局_android_

    本文将深入探讨Android布局的各种类型及其使用方法,旨在帮助开发者更好地理解和掌握Android应用的UI设计。 首先,我们来了解Android中的基本布局类型: 1. **线性布局(LinearLayout)**:这是最基础的布局,它...

    认识Android布局文件

    【Android布局文件详解】 在Android应用开发中,界面设计是一个至关重要的环节,而XML格式的布局文件正是构建这些界面的核心工具。布局文件定义了应用程序界面的结构,包括它所包含的控件、控件间的相对位置以及...

    Android布局文件大全

    Android布局文件的属性值解析说明: 1 android:id [为控件指定相应的ID] 2 android:text [指定控件当中显示的文字 需要注意的是 这里尽量使用strings xml文件当中的字符串] 3 android:gravity [指定View组件的对齐...

    android 布局生成图片

    在Android开发中,有时我们需要将一个布局转换为图片,例如为了实现分享到微信的功能,或者进行屏幕截图。本文将深入探讨如何在Android中实现“布局生成图片”这一技术,以及如何将其与微信分享功能集成。 首先,让...

    Android xml布局文件生成工具

    "Android xml布局文件生成工具"是为了解决手动编写XML布局文件繁琐和耗时的问题而设计的。这类工具能够帮助开发者快速、直观地创建和编辑XML布局,提高开发效率。 DroidDraw是一款流行的老牌Android UI设计工具,...

    Android 相对布局实例

    在Android开发中,布局管理器是构建用户界面的关键部分,其中相对布局(RelativeLayout)是一种常见的布局方式。相对布局允许我们根据各个视图之间的相对位置来安排它们,这为设计复杂且灵活的用户界面提供了可能。...

    Android、教程<经典> 2 Android布局

    本教程将深入探讨Android布局的各个方面,帮助开发者掌握创建高效、可扩展且美观的用户界面的技巧。 首先,我们来了解Android布局的基础知识。Android提供了多种布局类型,每种都有其特定的用途: 1. **线性布局...

    java android 布局文件

    Android布局文件是用来描述应用程序界面上组件(如按钮、文本视图、图像视图等)的结构和位置的XML文档。这些文件定义了控件的属性,如大小、位置、文本、样式等,并且可以包含多个嵌套的布局以实现复杂的屏幕设计。...

    Android 显示/隐藏 布局

    在Android开发中,布局管理是应用界面设计...这些方法提供了一种更为动态和灵活的方式来控制Android布局的可见性,使得应用的交互更加丰富和有趣。在实际开发中,应根据应用场景选择合适的方法,以实现最佳的用户体验。

    android 中页面布局使用demo

    下面我们将详细探讨Android布局及其在实际应用中的使用。 Android支持多种布局管理器,每种都有其特定的用途: 1. **线性布局(LinearLayout)**:这是最基础的布局,可以将子视图水平或垂直排列。通过设置`...

    Android布局管理器

    【Android布局管理器】是Android应用开发中的核心概念,它决定了UI组件在屏幕上的排列方式。在Android中,布局管理器主要有五种类型:线性布局(LinearLayout)、表格布局(TableLayout)、相对布局(RelativeLayout...

    android布局管理器代码

    在Android开发中,布局管理器是构建用户界面(UI)的关键元素。它们负责组织和定位UI组件,确保屏幕上的元素合理、美观地排列。本文将深入探讨Android中的常见布局管理器,尤其是基于XML的布局,以及如何在Activity...

    android软键盘把布局顶上去问题

    然而,这种行为有时会导致一些界面布局问题,尤其是当应用处于全屏模式时,软键盘的出现可能会将下方的布局内容推至屏幕之外,使得用户无法看到或接触到这些内容。这就是我们常说的“软键盘把布局顶上去问题”。这个...

    android布局控件总结

    LinearLayout 线性布局 控制组件 横向 或者 纵向 排列 RelativeLayout 相对布局 子组件的位置总是相对兄弟组件,父容器来决定的 FrameLayout 帧布局、框架布局 创建一个空白区域, 一个区域成为一帧 TableLayout 表格...

    android 布局资源课件

    android不同的布局资源介绍,包括LinearLayout、RelativeLayout等

    android排版布局属性

    在Android应用开发中,布局是构建用户界面的关键环节,它决定了控件的排列方式和外观。其中,相对布局(RelativeLayout)是一种常用的布局方式,通过定义控件之间的相对位置,可以灵活地调整界面元素的布局。以下是...

    Android布局高级.doc

    Android布局高级.doc

    android界面布局详解

    在Android开发中,界面布局是构建用户界面的关键部分。它决定了应用中各个组件的位置和排列方式,从而影响用户体验。本文将深入探讨Android界面布局的各个方面。 1、用户界面及视图层次 Android用户界面主要由View...

    Android开发 - 布局

    本篇文章将深入探讨Android布局的相关知识点,包括布局的基本概念、类型、设计原则以及如何通过源码理解和优化布局性能。 ### 1. 基本概念 布局是XML文件,通常位于`res/layout`目录下,用于定义UI组件(如按钮、...

    Android七种布局解析

    Android 中有七种常见的布局方式,即线性布局(Linear Layout)、相对布局(Relative Layout)、表格布局(Table Layout)、网格视图(Grid View)、标签布局(Tab Layout)、列表视图(List View)和绝对布局...

Global site tag (gtag.js) - Google Analytics