match_parent

知识
王刚老师 2019-07-17 16:56:46

wrap是根据容器内的东西决定组件的大小,比如一个按钮,按钮中的字体大,那么这个按钮就大,字体小那么相应的按钮就会小些。
match的话是指“填充满”父容器。但是他跟fill_parent是不一样的,fill是真的填满,没有条件。
而match的话有自动调整的功能。效果对比如下:

#match_parent#

返回顶部

影响力:3593

inkscape如何使用节点工具

这个解答帮助过1061人

Activity的布局文件
先看Android官方Navigation Drawer说明:Creating a Navigation Drawer
根据说明,将 layout/activity_base.xml 设置为以下内容:

<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
xmlns:android=""
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<ListView
android:id="@+id/left_drawer"

编辑时间 2019-01-13 12:18:25
影响力:2054

android studio3.0.1开发 布局属性framelayout里面放个listview listview不显示?

描述: <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertica... <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<framelayout
android:clickable="true" >
<ListView
android:id="@+id/listTarget"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="19dp"
android:layout_marginEnd="11dp"
android:layout_marginRight="11dp"
android:layout_weight="1">
</ListView>
</framelayout>
<include layout="@layout/top2"/>
</LinearLayout>
展开
这个解答帮助过8635人

没猜错,因为你的framelayout没有宽高大小= = 还有你的listview也有毛病,高不是自适应也就算了,你都固定了0dp你还指望他会出现么。看得我都怀疑人生了

编辑时间 2019-02-07
影响力:2783

请问Android的listview空间的item高度怎么设置全屏?

描述: 我想做个页面,可上下左右滑动,用了listview嵌套viewpager,但是高度不会调,想让它全屏,请大神指教。... 我想做个页面,可上下左右滑动,用了listview嵌套viewpager,但是高度不会调,想让它全屏,请大神指教。
这个解答帮助过158人

item的布局高度match_parent,ViewPager 高度 match_parent,适配器的
inflater.inflate( );中间的ViewGroup root 不能写null.要写父控件,最后一个参数也写true

追问

谢谢,已解决

编辑时间 2019-04-07
影响力:2876

求大神告知Android微信朋友圈界面代码

描述: 设计要求如下:仿照自己的微信朋友圈,实现界面设计。垂直线性布局中添加相对布局管理器,使用显示头像和微信图标的图像视图组件(ImageView)... 设计要求如下:仿照自己的微信朋友圈,实现界面设计。垂直线性布局中添加相 对布局管理器,使用显示头像和微信图标的图像视图组件(ImageView)

这个解答帮助过2223人

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="cn.tomcat7.baidu.MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        <ImageView
            android:layout_width="64dip"
            android:layout_height="64dip"
            android:src="@mipmap/ic_launcher" />

        <LinearLayout
            android:layout_width="0dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:orientation="vertical">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:maxLines="1"
                android:text="赤壁赋"
                android:textColor="#000000"
                android:textSize="16dip" />

            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="壬戌之秋,七月既望,苏子与客泛舟游于赤壁之下。清风徐来,水波不兴。举酒属客,诵明月之诗,歌窈窕之章。少焉,月出于东山之上,徘徊于斗牛之间。白露横江,水光接天。纵一苇之所如,凌万顷之茫然。浩浩乎如冯虚御风,而不知其所止;飘飘乎如遗世独立,羽化而登仙。" />
        </LinearLayout>
    </LinearLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dip"
        android:background="#f1f1f1" />

</LinearLayout>

编辑时间 2019-12-17