gpt4 book ai didi

android - 布局下推内容

转载 作者:行者123 更新时间:2023-11-30 01:36:24 25 4
gpt4 key购买 nike

enter image description here不确定我的布局中发生了什么,但在选项卡之后,内容从屏幕的一半开始......

这些是从父到子的顺序布局

<android.support.design.widget.CoordinatorLayout 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:fitsSystemWindows="true"
tools:context=".Prof">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

<include layout="@layout/tabs_profile" />
</android.support.design.widget.CoordinatorLayout>


tabs profile layout:

<!-- for Tabs -->
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorTabs"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />

<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabTextColor="@color/tabsTxtColor"
app:tabMode="fixed"
app:tabGravity="fill"/>
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />


<include layout="@layout/content_profile" />


</android.support.design.widget.CoordinatorLayout>


content xml layout:


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

<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="center"
android:text="click THIS"
android:layout_alignParentBottom="true"
android:textColor="@color/tabsTxtColor"
android:background="@color/colorPrimary"/>

</RelativeLayout>


fragment layout:

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

<ImageView
android:layout_width="fill_parent"
android:layout_height="300dp"
android:adjustViewBounds="true"
android:id="@+id/productDefaultPicture"
android:src="@drawable/default_product"
android:layout_above="@+id/hashes"/>

<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/previousPicture"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_circled_left_48"/>

<ImageView
android:layout_width="50dp"
android:layout_height="50dp"
android:id="@+id/nextPicture"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/ic_circled_right_48"/>


<View
android:background="#16000000"
android:layout_width="fill_parent"
android:layout_height="5dip"
android:id="@+id/break2"
android:layout_below="@+id/productDefaultPicture"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:id="@+id/hashes"
android:layout_alignParentBottom="true"
android:textSize="18sp"
android:textColor="@color/primary_dark_material_dark"
android:text="iPhone 6"/>

</RelativeLayout>

</LinearLayout>

最佳答案

您的“散列”(id) View 锚定到填充 fragment 的 RelativeLayout 底部。

看起来其他所有内容都位于哈希 View 上方,因此它们都锚定在 fragment 的底部。

您可以尝试相对于 RelativeLayout 的中心或顶部定位事物。

关于android - 布局下推内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35051240/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com