下面是我的布局,请参阅:
class_name_3
您可以在上面的布局中看到它,其中包含两个相对布局。我正在处理每个运行时的可见性。一次只能看到一个相对布局。
一切正常。但, 问题是我包括了另一个使用标签的简单布局。 因此,我的 MapView不能平滑滚动,并且在包括使用标签的布局后,ListView也不会滚动。
您可以按以下方式签入上述XML:
<RelativeLayout 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:clickable="true"
android:focusableInTouchMode="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
layout="@layout/view_newsfeed_header_for_nearby"
android:layout_width="match_parent"
android:layout_height="wrap_content"></include>
<fragment
android:id="@+id/mapView"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/rl_near_by_users" />
<TextView
android:id="@+id/txtSearching"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@android:color/white"
android:padding="@dimen/size_6"
android:text="@string/searching"
android:textColor="@color/gray"
android:textSize="@dimen/size_13"
android:visibility="gone" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/relGymData"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray_cell_bg"
android:clickable="true"
android:visibility="gone">
<!--android:layout_above="@+id/txtNoResultsFound"-->
<ListView
android:id="@+id/listGymSuggestions"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/gray_cell_bg"
android:divider="@null"
android:footerDividersEnabled="false"
android:nestedScrollingEnabled="false"
android:visibility="gone">
</ListView>
<com.ronin.app.custom.SFTextRegularTextView
android:id="@+id/txtNoResultsFound"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/listGymSuggestions"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/size_25"
android:padding="@dimen/size_15"
android:text="@string/no_result"
android:textColor="@color/sender_bg"
android:textSize="@dimen/size_16"
android:visibility="gone" />
<ProgressBar
android:id="@+id/progressbar"
style="?android:attr/progressBarStyleSmall"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="@dimen/size_30"
android:padding="@dimen/size_20"
android:visibility="gone" />
</RelativeLayout>
包含的布局如下:
view_newsfeed_header_for_nearby
<include
layout="@layout/**view_newsfeed_header_for_nearby**"
android:layout_width="match_parent"
android:layout_height="wrap_content"></include>
可能是什么问题?