在TableLayout中调整片段大小

时间:2016-09-13 11:02:55

标签: android android-layout

我想获得类似的东西

aim

但是我已经获得了这个

:(

Fragment占据了所有屏幕。我如何设置它,例如500dpi高度和其余屏幕的列表布局。

问题2.广告显示/隐藏Button是否有任何可能性,这将调整Fragment的大小(显示Fragment高度增加的项目并隐藏列表)

<LinearLayout 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="com.example.k.guides4art20.MainActivity"
>
<TableLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:shrinkColumns="*"
    android:stretchColumns="0"
    android:orientation="vertical" >


    <TableRow android:id="@+id/tableRow1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:padding="5dip" >


        <EditText
            android:layout_height="wrap_content"
            android:hint="szukaj"
            android:gravity="center"
            android:textSize="25sp"
            android:id="@+id/search_bar"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:maxLines="1" />

        <Button
            android:id="@+id/filters"
            android:layout_width="80dp"
            android:layout_height="wrap_content"
            android:text="filtry"
            android:textSize="15sp"
            android:minHeight="0dp"
            android:minWidth="10dp"
            android:layout_gravity="right" />

    </TableRow>

    <TableRow
        android:id="@+id/tableRow2"
        android:layout_width="fill_parent"
        android:layout_height="400dp"
         >

        <fragment xmlns:android="http://schemas.android.com/apk/res/android"
            xmlns:map="http://schemas.android.com/apk/res-auto"
            xmlns:tools="http://schemas.android.com/tools"
            android:id="@+id/map"
            android:name = "com.google.android.gms.maps.SupportMapFragment"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            tools:context="com.example.k.guides4art20.MapsActivity"
            android:layout_above="@+id/textView"
            android:layout_alignParentStart="true"
            android:layout_span="2" />

    </TableRow>

    <TableRow
        android:id="@+id/tableRow4"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="5dip" >


        <ListView
            android:id="@+id/listView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_span="2">

        </ListView>
        </TableRow>

</TableLayout>

3 个答案:

答案 0 :(得分:1)

将片段插入布局并设置layout_height

      <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    tools:context="com.example.k.guides4art20.MainActivity"
    android:id="@id/main"
    android:orientation="vertical">
    <LinearLayout
        android:orientation="horizontal"
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/searchBarLay">
        <EditText
            android:hint="szukaj"
            android:gravity="center"
            android:textSize="25sp"
            android:id="@+id/search_bar"
            android:maxLines="1"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1" />
        <Button
            android:id="@+id/filters"
            android:text="filtry"
            android:textSize="15sp"
            android:minHeight="0dp"
            android:minWidth="10dp"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:autoText="false" />
    </LinearLayout>
    <LinearLayout
        android:orientation="vertical"
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="match_parent"
        android:layout_height="280dp"
        android:id="@+id/mapLay"
        android:background="@color/blue25">
        <fragment xmlns:map="http://schemas.android.com/apk/res-auto"
            android:id="@+id/map"
            android:name="com.google.android.gms.maps.SupportMapFragment"
            tools:context="com.example.k.guides4art20.MapsActivity"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>
    <LinearLayout
        android:orientation="vertical"
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/listLay">
        <ListView
            android:id="@+id/listView"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    </LinearLayout>
</LinearLayout>

问题2是的,你可以这样做。通过改变参数可见性。

layMap.Visibility = ViewStates.Gone;
layList.Visibility = ViewStates.Visible;

答案 1 :(得分:0)

将线性布局作为父级,并使用权重属性将屏幕分成几部分。在一个采取一个片段,在另一个采取地图片段。这将解决您的问题。否则地图将占据整个屏幕。 或者你可以移动导航幻灯片抽屉保持固定打开,适用于大尺寸设备广告,小型保持隐藏方式,并用汉堡包图标控制它。

答案 2 :(得分:0)

我会使用LinearLayoutRelativeLayout作为元素的容器而不是TableLayout,然后在您的片段集中

android:layout_height="500dp"