mirror of
https://github.com/leanote/leanote-android.git
synced 2026-01-21 02:13:36 +08:00
73 lines
2.9 KiB
XML
Executable File
73 lines
2.9 KiB
XML
Executable File
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/fl_tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="#EEEEEE">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_undo"
|
|
style="@style/FormatButton"
|
|
android:src="@drawable/ic_undo_black_disable" />
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_redo"
|
|
style="@style/FormatButton"
|
|
android:src="@drawable/ic_redo_black_disable" />
|
|
|
|
<org.houxg.leamonax.widget.ToggleImageButton
|
|
android:id="@+id/btn_bold"
|
|
style="@style/FormatButton"
|
|
app:checkedDrawable="@drawable/ic_format_bold_black_enable"
|
|
app:uncheckedDrawable="@drawable/ic_format_bold_black_disable" />
|
|
|
|
<org.houxg.leamonax.widget.ToggleImageButton
|
|
android:id="@+id/btn_italic"
|
|
style="@style/FormatButton"
|
|
app:checkedDrawable="@drawable/ic_format_italic_black_enable"
|
|
app:uncheckedDrawable="@drawable/ic_format_italic_black_disable" />
|
|
|
|
<org.houxg.leamonax.widget.ToggleImageButton
|
|
android:id="@+id/btn_quote"
|
|
style="@style/FormatButton"
|
|
app:checkedDrawable="@drawable/ic_format_quote_enable"
|
|
app:uncheckedDrawable="@drawable/ic_format_quote_disable" />
|
|
|
|
<org.houxg.leamonax.widget.ToggleImageButton
|
|
android:id="@+id/btn_heading"
|
|
style="@style/FormatButton"
|
|
app:checkedDrawable="@drawable/ic_header_richtext_enable"
|
|
app:uncheckedDrawable="@drawable/ic_header_richtext_disable" />
|
|
|
|
<org.houxg.leamonax.widget.ToggleImageButton
|
|
android:id="@+id/btn_unorder_list"
|
|
style="@style/FormatButton"
|
|
app:checkedDrawable="@drawable/ic_format_list_bulleted_black_enable"
|
|
app:uncheckedDrawable="@drawable/ic_format_list_bulleted_black_disable" />
|
|
|
|
<org.houxg.leamonax.widget.ToggleImageButton
|
|
android:id="@+id/btn_order_list"
|
|
style="@style/FormatButton"
|
|
app:checkedDrawable="@drawable/ic_format_list_numbered_black_enable"
|
|
app:uncheckedDrawable="@drawable/ic_format_list_numbered_black_disable" />
|
|
|
|
<ImageView
|
|
android:id="@+id/btn_img"
|
|
style="@style/FormatButton"
|
|
android:src="@drawable/ic_insert_photo_black_disable" />
|
|
|
|
<org.houxg.leamonax.widget.ToggleImageButton
|
|
android:id="@+id/btn_link"
|
|
style="@style/FormatButton"
|
|
android:src="@drawable/ic_insert_link_black_disable" />
|
|
|
|
</LinearLayout>
|
|
|
|
</HorizontalScrollView>
|