android - 安卓布局问题

查看:86
本文介绍了android - 安卓布局问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

我希望一个dialog里面显示一个datePicker和两个按钮,但是显示不出按钮,另外流量配额那个TextView也有点问题,调了好多次也没弄明白,我希望他显示在一行并且竖直居中,下面是显示效果和布局文件,麻烦大家帮忙改改,谢谢

    <?xml version="1.0" encoding="utf-8"?>
   <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical" android:layout_width="wrap_content"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="horizontal">
            <TextView
                android:text="流量配额:"
                android:layout_gravity="center_vertical"
                android:layout_weight="3"
                android:layout_width="0dp"
                android:layout_height="wrap_content" />
    
    
            <EditText
                android:id="@+id/editText"
    
                android:layout_weight="4"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:ems="10"
                android:layout_gravity="center"
                android:inputType="number" />
    
            <Spinner
                android:id="@+id/spinner_datFormat"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" />
    
        </LinearLayout>
    
    
    
        <DatePicker
            android:id="@+id/datePicker"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    
        <Button
            android:id="@+id/button_confirmTimeCancel"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="left"
            android:text="取消"/>
        <Button
            android:id="@+id/button_confirmTime"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="right"
            android:text="确定"/>
    </LinearLayout>

解决方案

我只能说你那个DatePicker高度都已经match_parent了,还指望着下面的Button能显示啊!!
给你个提示,对DatePicker用weight属性:

android:layout_weight=1
android:layout_width="match_parent"
android:layout_height="0dp"

这篇关于android - 安卓布局问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆