使用(第一次)AndroidSwipeLayout插件,似乎整个布局必须是“可以扫描”。
有没有办法在同一个AndroidSwipeLayout中显示固定标题(通用图片/文字或其他视图)?
P.S。:我为Xamarin Android使用绑定端口,但布局架构是相同的
原创Android组件 https://github.com/daimajia/AndroidSwipeLayout
Xamarin Android移植 https://components.xamarin.com/view/AndroidSwipeLayout
更新 在主要布局中使用似乎按预期工作。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp"
android:gravity="center">
<TextView
android:text="My fixed text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/txtIncomingCall" />
<include
android:id="@+id/idSwipeLayout"
layout="@layout/SwipeLayout"
android:layout_width="match_parent" />
</LinearLayout>
<?xml version="1.0" encoding="utf-8"?>
<com.daimajia.swipe.SwipeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="80dp">
<!-- Bottom View Start-->
<LinearLayout
android:background="#66ddff00"
android:id="@+id/bottom_wrapper"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="1"
>
<!--What you want to show-->
</LinearLayout>
<!-- Bottom View End-->
<!-- Surface View Start -->
<LinearLayout
android:padding="10dp"
android:background="#ffffff"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<!--What you want to show in SurfaceView-->
</LinearLayout>
<!-- Surface View End -->
</com.daimajia.swipe.SwipeLayout>