224 lines
9.3 KiB
XML
224 lines
9.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<androidx.constraintlayout.widget.ConstraintLayout
|
||
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="@dimen/right_fragment_w"
|
||
android:layout_height="match_parent"
|
||
android:background="@drawable/shape_right_fragment_bg"
|
||
tools:context=".ui.fragment.note.NoteFragment">
|
||
|
||
<TextView
|
||
android:id="@+id/note_bar_cancel"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginLeft="12dp"
|
||
android:layout_marginTop="14dp"
|
||
android:drawableLeft="@drawable/selector_btn_back_xml"
|
||
android:text="便签"
|
||
android:textColor="@color/default_blue_text_color"
|
||
android:textSize="16sp"
|
||
app:layout_constraintLeft_toLeftOf="parent"
|
||
app:layout_constraintTop_toTopOf="parent" />
|
||
|
||
<ImageButton
|
||
android:id="@+id/note_bar_save"
|
||
android:layout_width="40dp"
|
||
android:layout_height="40dp"
|
||
android:layout_marginTop="9dp"
|
||
android:layout_marginRight="14dp"
|
||
android:background="@drawable/ripple_fragment_save_button_bg"
|
||
android:src="@drawable/icon_save"
|
||
app:layout_constraintRight_toRightOf="parent"
|
||
app:layout_constraintTop_toTopOf="parent" />
|
||
|
||
|
||
<ImageButton
|
||
android:id="@+id/note_bar_delete"
|
||
android:layout_width="40dp"
|
||
android:layout_height="40dp"
|
||
android:layout_centerInParent="true"
|
||
android:layout_marginRight="5dp"
|
||
android:background="@color/transparent"
|
||
android:src="@drawable/icon_delete"
|
||
app:layout_constraintRight_toLeftOf="@id/note_bar_save"
|
||
app:layout_constraintTop_toTopOf="@id/note_bar_save" />
|
||
|
||
<androidx.core.widget.NestedScrollView
|
||
android:layout_width="0dp"
|
||
android:layout_height="0dp"
|
||
android:layout_marginTop="6dp"
|
||
android:paddingLeft="11dp"
|
||
android:paddingTop="6dp"
|
||
android:paddingRight="9dp"
|
||
android:paddingBottom="6dp"
|
||
app:layout_constraintBottom_toTopOf="@id/note_camera"
|
||
app:layout_constraintLeft_toLeftOf="parent"
|
||
app:layout_constraintRight_toRightOf="parent"
|
||
app:layout_constraintTop_toBottomOf="@id/note_bar_save">
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:layout_marginBottom="7dp"
|
||
android:orientation="vertical">
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:gravity="center_vertical"
|
||
android:orientation="horizontal"
|
||
android:paddingTop="5dp"
|
||
android:paddingBottom="5dp">
|
||
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="橡皮擦 " />
|
||
|
||
<ImageView
|
||
android:id="@+id/sketch_eraser"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:background="@drawable/selector_sketch_eraser_bg"
|
||
android:src="@drawable/sketch_eraser" />
|
||
|
||
</LinearLayout>
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="10dp"
|
||
android:orientation="horizontal">
|
||
|
||
<ImageView
|
||
android:id="@+id/sketch_back"
|
||
style="@style/sketch_operation_style"
|
||
android:src="@drawable/sketch_back" />
|
||
|
||
<View
|
||
style="@style/link_gray_style"
|
||
android:layout_margin="2dp" />
|
||
|
||
<ImageView
|
||
android:id="@+id/sketch_forward"
|
||
style="@style/sketch_operation_style"
|
||
android:src="@drawable/sketch_forward" />
|
||
|
||
<View
|
||
style="@style/link_gray_style"
|
||
android:layout_margin="2dp" />
|
||
|
||
<TextView
|
||
android:id="@+id/sketch_clear"
|
||
style="@style/sketch_operation_style"
|
||
android:text="重绘" />
|
||
</LinearLayout>
|
||
|
||
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:orientation="horizontal">
|
||
|
||
<TextView
|
||
style="@style/evaluation_fragment_title_text_style"
|
||
android:layout_gravity="top"
|
||
android:layout_marginTop="3dp"
|
||
android:text="备注" />
|
||
|
||
<com.navinfo.omqs.ui.widget.MyEditeText
|
||
android:id="@+id/note_description"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:background="@drawable/shape_rect_white_2dp_bg"
|
||
android:elevation="2dp"
|
||
android:gravity="start"
|
||
android:hint="请输入备注信息"
|
||
android:inputType="textMultiLine"
|
||
android:lines="3"
|
||
android:maxLines="3"
|
||
android:paddingLeft="12dp"
|
||
android:paddingTop="2dp"
|
||
android:paddingBottom="2dp"
|
||
android:textSize="12sp" />
|
||
|
||
</LinearLayout>
|
||
|
||
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginBottom="8dp"
|
||
android:text="多媒体"
|
||
android:textColor="@color/default_blue_text_color"
|
||
android:textSize="16sp" />
|
||
|
||
<!--
|
||
这种效果也好实现,主要的关键点是 Android:clipChildren=”false” 这个属性。
|
||
1.配置ViewPager 和其父布局的 android:clipChildren属性为”false”.
|
||
(android:clipChildren表示是否限制子View在其范围内,默认为true. 代码设置setClipChildren(false))
|
||
因为如果clipChildren属性设置为true,就表明我们要将children给clip掉,就是说对于子元素来说,超出当前view的部分都会被切掉,那我们在这里把它设置成false,就表明超出view的部分,不要切掉,依然显示。
|
||
注意:setClipChildren(false)在3.0以上版本中,开启了硬件加速后将不能正常工作,所以需要将其设置为软件加速。设置软硬件加速使用 setLayerType(View.LAYER_TYPE_SOFTWARE, null); 也可以在布局文件中添加 android:layerType=”software”
|
||
|
||
-->
|
||
<LinearLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:gravity="center"
|
||
android:orientation="horizontal">
|
||
|
||
<ImageView
|
||
android:id="@+id/note_picture_left"
|
||
android:layout_width="24dp"
|
||
android:layout_height="24dp"
|
||
android:layout_marginRight="4dp"
|
||
android:background="@drawable/icon_picture_left"
|
||
android:padding="5dp" />
|
||
|
||
<androidx.viewpager2.widget.ViewPager2
|
||
android:id="@+id/note_picture_viewpager"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="50dp"
|
||
android:layout_weight="1"
|
||
android:clipChildren="false" />
|
||
|
||
<ImageView
|
||
android:id="@+id/note_picture_right"
|
||
android:layout_width="24dp"
|
||
android:layout_height="24dp"
|
||
android:layout_marginLeft="4dp"
|
||
android:background="@drawable/icon_picture_right"
|
||
android:padding="5dp" />
|
||
</LinearLayout>
|
||
|
||
<androidx.recyclerview.widget.RecyclerView
|
||
android:id="@+id/note_voice_recyclerview"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="120dp" />
|
||
|
||
</LinearLayout>
|
||
</androidx.core.widget.NestedScrollView>
|
||
|
||
<ImageView
|
||
android:id="@+id/note_camera"
|
||
android:layout_width="0dp"
|
||
android:layout_height="wrap_content"
|
||
android:padding="10dp"
|
||
android:src="@drawable/baseline_camera_alt_24"
|
||
app:layout_constraintBottom_toBottomOf="parent"
|
||
app:layout_constraintHorizontal_weight="1"
|
||
app:layout_constraintLeft_toLeftOf="parent"
|
||
app:layout_constraintRight_toLeftOf="@id/note_voice" />
|
||
|
||
<ImageView
|
||
android:id="@+id/note_voice"
|
||
android:layout_width="0dp"
|
||
android:layout_height="wrap_content"
|
||
android:padding="10dp"
|
||
android:src="@drawable/baseline_keyboard_voice_24"
|
||
app:layout_constraintBottom_toBottomOf="parent"
|
||
app:layout_constraintHorizontal_weight="1"
|
||
app:layout_constraintLeft_toRightOf="@id/note_camera"
|
||
app:layout_constraintRight_toRightOf="parent" />
|
||
</androidx.constraintlayout.widget.ConstraintLayout> |