2024-09-17 09:24:50 +08:00
|
|
|
<?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"
|
|
|
|
|
android:padding="16dp">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:weightSum="100">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_weight="90"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:text="flomo - ai 标签版本"
|
|
|
|
|
android:textSize="24sp" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/configButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="配置"
|
|
|
|
|
android:layout_gravity="end"
|
|
|
|
|
android:alpha="0.5" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/inputEditText"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:hint="输入文字"
|
|
|
|
|
android:inputType="textMultiLine"
|
|
|
|
|
android:minLines="3"
|
|
|
|
|
android:layout_weight="0.5"
|
|
|
|
|
android:background="@drawable/edittext_border" />
|
|
|
|
|
|
2024-09-19 19:56:55 +08:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2024-09-17 09:24:50 +08:00
|
|
|
android:layout_height="wrap_content"
|
2024-09-19 19:56:55 +08:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:weightSum="100">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/submitToZhiPuAIButton"
|
|
|
|
|
android:layout_width="113dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="提交到智谱AI"
|
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/submitToSparkAIButton"
|
|
|
|
|
android:layout_width="113dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="提交到星火AI"
|
|
|
|
|
android:textSize="12sp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2024-09-17 09:24:50 +08:00
|
|
|
|
|
|
|
|
<com.google.android.material.tabs.TabLayout
|
|
|
|
|
android:id="@+id/tabLayout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/submitToServerButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="提交到笔记服务器" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/statusTextView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
|
android:background="@android:color/holo_blue_dark" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|