1

我正在为我的论文在 android 中创建一个笔记应用程序,只是想问一下如何将复选框放入 EditText 以及如何将其保存在数据库中并保持格式。我在evernote上看到了这个,我真的不知道。谢谢

4

1 回答 1

0

尝试在 RelativeLayout 中将 EditText 与 CheckBox 重叠:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <EditText
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:inputType="text"
        />

    <CheckBox
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="the checkbox" />    
</RelativeLayout>

您究竟想将什么保存到数据库中并保持格式?如果它只是文本,则应将其保存在文本类型的列中。可以在此处找到有关数据库的指南:http ://www.vogella.com/articles/AndroidSQLite/article.html 。

于 2012-08-09T17:28:26.900 回答