我有一个这个xml的片段:
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>$(SolutionDir)bin\Release\plugins\$(ProjectName)</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
我需要模拟聊天,所以我使用的是android:stackFromBottom
问题是当我第一次打开那个片段时,我发现最后一个项目是“cutted”。 这是片段的截图。
我做错了什么?
更新了代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/footer">
<My.Views.NoResultPanel
style="@style/default_no_result_panel"
android:id="@+id/noResultPanel"
local:textID="@string/no_chat" />
<My.Views.LoadingPanel
style="@style/default_loading_panel"
android:id="@+id/loadingPanel"
local:textID="@string/loading_chat" />
<ListView
android:id="@+id/lvChat"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null"
android:dividerHeight="8dp"
android:stackFromBottom="true"
android:listSelector="@android:color/transparent" />
<View
style="@style/default_divider"
android:layout_gravity="bottom" />
</FrameLayout>
<RelativeLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:padding="8dp">
<ImageView
android:id="@+id/imgAttachment"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="8dp"
android:layout_centerVertical="true"
android:src="@drawable/ic_attachment_grey600_24dp"
android:layout_alignParentLeft="true" />
<EditText
android:id="@+id/txtMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/imgVisibility"
android:layout_toRightOf="@+id/imgAttachment"
android:layout_centerVertical="true"
android:layout_marginRight="4dp"
android:layout_marginLeft="4dp"
android:maxLines="3"
android:inputType="textShortMessage"
android:hint="@string/write_a_message_here" />
<ImageView
android:id="@+id/imgVisibility"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="8dp"
android:layout_centerVertical="true"
android:layout_marginRight="4dp"
android:src="@drawable/ic_eye_grey600_24dp"
android:layout_toLeftOf="@+id/imgSend" />
<ImageView
android:id="@+id/imgSend"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="8dp"
android:layout_centerVertical="true"
android:src="@drawable/ic_send_grey600_24dp"
android:layout_alignParentRight="true" />
</RelativeLayout>
</RelativeLayout>
答案 0 :(得分:2)
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
你的FrameLayout是匹配的父级,所以它首先覆盖整个屏幕所以不确定它下方的新布局@ + id / footer ...在它的顶部你已经覆盖底部RelativeLayout这是页脚所以只是改变你的布局。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
//your Footer Layout will always stay in bottom
<RelativeLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:padding="8dp">
<ImageView
android:id="@+id/imgAttachment"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="8dp"
android:layout_centerVertical="true"
android:src="@drawable/ic_attachment_grey600_24dp"
android:layout_alignParentLeft="true" />
<EditText
android:id="@+id/txtMessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_toLeftOf="@+id/imgVisibility"
android:layout_toRightOf="@+id/imgAttachment"
android:layout_centerVertical="true"
android:layout_marginRight="4dp"
android:layout_marginLeft="4dp"
android:maxLines="3"
android:inputType="textShortMessage"
android:hint="@string/write_a_message_here" />
<ImageView
android:id="@+id/imgVisibility"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="8dp"
android:layout_centerVertical="true"
android:layout_marginRight="4dp"
android:src="@drawable/ic_eye_grey600_24dp"
android:layout_toLeftOf="@+id/imgSend" />
<ImageView
android:id="@+id/imgSend"
android:layout_width="40dp"
android:layout_height="40dp"
android:padding="8dp"
android:layout_centerVertical="true"
android:src="@drawable/ic_send_grey600_24dp"
android:layout_alignParentRight="true" />
</RelativeLayout>
//your FrameLayout now will adjust above footer
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@id/footer"> --------change from +id to id now
<My.Views.NoResultPanel
style="@style/default_no_result_panel"
android:id="@+id/noResultPanel"
local:textID="@string/no_chat" />
<My.Views.LoadingPanel
style="@style/default_loading_panel"
android:id="@+id/loadingPanel"
local:textID="@string/loading_chat" />
<ListView
android:id="@+id/lvChat"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null"
android:dividerHeight="8dp"
android:stackFromBottom="true"
android:listSelector="@android:color/transparent" />
<View
style="@style/default_divider"
android:layout_gravity="bottom" />
</FrameLayout>
</RelativeLayout>
<强>更新强>
请尝试将android:transcriptMode="alwaysScroll"
属性添加到listView
设置列表的副本模式。在抄本模式下,列表会滚动到底部,以便在添加新项目时使其可见。这样列表将自动滚动到底部。
必须是您引用doc的以下常量值之一。
答案 1 :(得分:1)
将您的父RelativeLayout替换为具有垂直方向的LinearLayout
<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
android:layout_height="0dp"
android:weight="1"
android:layout_above="@+id/footer">
....
</FrameLayout>
<RelativeLayout
android:id="@+id/footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="8dp">
....
</RelativeLayout>
</LinearLayout>
FrameLayout将匹配父高度