- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 SugarORM 来管理好友列表
AndroidManifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:name="com.orm.SugarApp">
<meta-data android:name="DATABASE" android:value="myfriends.db" />
<meta-data android:name="VERSION" android:value="2" />
<meta-data android:name="QUERY_LOG" android:value="true" />
<meta-data android:name="DOMAIN_PACKAGE_NAME" android:value="com.example" />
<activity android:name=".MainActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
Friend.java
public class Friend extends SugarRecord{
int recID;
String name;
String phone;
public Friend(){}
public Friend(int rec, String n, String p)
{
this.recID = rec;
this.name = n;
this.phone = p;
}
@Override
public String toString() {
return "[" + recID + ", " + name + ", " + phone + "]";
}
}
activity_main.xml
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Insert"
android:id="@+id/buttonInsert"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Delete"
android:id="@+id/buttonDelete"
android:layout_alignTop="@+id/buttonInsert"
android:layout_toEndOf="@+id/buttonInsert" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Update"
android:id="@+id/buttonUpdate"
android:layout_alignTop="@+id/buttonDelete"
android:layout_toEndOf="@+id/buttonDelete" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editTextID"
android:hint="Enter ID to update or delete"
android:layout_below="@+id/buttonInsert"
android:layout_alignParentStart="true" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editTextName"
android:hint="Enter new name"
android:layout_below="@+id/editTextID"
android:layout_alignParentStart="true" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="500dp"
android:background="@color/abc_search_url_text_normal"
android:id="@+id/scrollView"
android:layout_below="@+id/editTextName"
android:layout_alignParentStart="true" >
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp"
android:text=""
android:id="@+id/textView" />
</ScrollView>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Show"
android:id="@+id/buttonShow"
android:layout_alignBottom="@+id/buttonUpdate"
android:layout_toEndOf="@+id/buttonUpdate" />
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/editTextPhone"
android:hint="Enter new phone"
android:layout_above="@+id/scrollView"
android:layout_alignEnd="@+id/scrollView" />
MainActivity.java
public class MainActivity extends Activity implements View.OnClickListener {
SQLiteDatabase db;
TextView txtMsg;
Button btnInsert;
Button btnDelete;
Button btnUpdate;
Button btnShow;
EditText edtID;
EditText edtName;
EditText edtPhone;
// id
static int id = 0;
// Friends list
List<Friend> friendList;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//initializeTable();
resetTable();
getWidgets();
}
private void resetTable() {
Friend.deleteAll(Friend.class);
}
// Get friend list
private List<Friend> getFriendList()
{
return Friend.listAll(Friend.class);
}
// Show to textView
private void show()
{
txtMsg.setText("");
friendList = getFriendList();
txtMsg.append("[ID, Name, Phone]");
for (int i = 0; i < friendList.size(); i++)
{
txtMsg.append("\n[" + friendList.get(i).recID + ", " +
friendList.get(i).name + ", " + friendList.get(i).phone + "]");
}
}
private void getWidgets() {
txtMsg = (TextView) findViewById(R.id.textView);
edtID = (EditText) findViewById(R.id.editTextID);
edtName = (EditText) findViewById(R.id.editTextName);
edtPhone = (EditText)findViewById(R.id.editTextPhone);
btnInsert = (Button) findViewById(R.id.buttonInsert);
btnDelete = (Button) findViewById(R.id.buttonDelete);
btnUpdate = (Button) findViewById(R.id.buttonUpdate);
btnShow = (Button) findViewById(R.id.buttonShow);
btnInsert.setOnClickListener(this);
btnDelete.setOnClickListener(this);
btnUpdate.setOnClickListener(this);
btnShow.setOnClickListener(this);
}
// insert
private void insert()
{
txtMsg.setText("");
try
{
Friend f = new Friend(++id, edtName.getText().toString(), edtPhone.getText().toString());
f.save();
txtMsg.setText("Insert successfully");
txtMsg.append(f.toString());
}
catch (Exception e)
{
txtMsg.setText(e.toString());
}
}
// delete
private void delete()
{
txtMsg.setText("");
int pos = -1;
try
{
try
{
pos = Integer.parseInt(edtID.getText().toString());
}
catch (Exception e)
{
txtMsg.setText(e.toString());
}
Friend f = Friend.findById(Friend.class, pos);
f.delete();
txtMsg.setText("Delete successfully");
}
catch(Exception e)
{
txtMsg.setText(e.toString());
}
}
// update
private void update()
{
txtMsg.setText("");
long pos = -1;
try {
try
{
pos = Long.parseLong(edtID.getText().toString());
Toast.makeText(this, String.valueOf(pos), Toast.LENGTH_SHORT).show();
}
catch (Exception e)
{
txtMsg.setText(e.toString());
}
Friend f = SugarRecord.findById(Friend.class, pos);
f.name = edtName.getText().toString();
f.phone = edtPhone.getText().toString();
f.save();
txtMsg.setText("Update successfully");
txtMsg.append(f.toString());
}
catch (Exception e)
{
txtMsg.setText(e.toString());
}
}
// Button click
@Override
public void onClick(View view) {
if (view.getId() == btnShow.getId()) {
show();
} else if (view.getId() == btnInsert.getId()) {
insert();
} else if (view.getId() == btnUpdate.getId()) {
update();
} else if (view.getId() == btnDelete.getId()) {
delete();
}
}
问题是当我尝试更新时出现错误。例如,我插入如下 6 行
现在我更新第 2 行,这里出错!
提前致谢!
最佳答案
尝试改变:
Friend f = SugarRecord.findById(Friend.class, pos);
至:
Friend f = Friend.findById(Friend.class, pos);
关于java - SugarORM 更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36789172/
是否有一种编程方式来使用连接表进行选择? 我做了 SugarRecord.findWithQuery(Class, query) 的变通方法,但我很好奇更好的方法 最佳答案 还没有..不过我们应该尽快
我有一个图书类(class): public class Book extends SugarRecord { private String mBookName; private St
我正在使用 SugarORM 来管理好友列表 AndroidManifest.xml Friend.java public cl
在 Android 中有 3 个表扩展了 SugarRecord(SugarOrm Library)1.用户项2.账户项目3.社区项目 每个用户都有一个帐户,和一个表来保存用户的地址、电话、一些社交地
是否可以通过索引从 sugarORM 数据库中获取值?我在他们的文档中找不到这个。 最佳答案 如果你看一下reo ,有一行他们使用 findById 通过其索引获取值。像这样: Book book =
我下载了 SugarORM 源代码以将其用作库模块(因此我可以覆盖应用程序的“attachBaseContext”方法。 我已经看到问题SugarORM and multidex ,问题是我不知道
借助 Android 中的 SugarORM,我在 SQLite 数据库中创建了表。 public class ProjectPhotoData extends SugarRecord { publi
我注意到在 SugarORM 中,对象可以调用 object.save() 即使 save() 实际上并未直接在对象和所有对象中实现在类的顶部声明了注释@Table。 如果对象所做的只是使用注释,那么
我有这门课: public class ProfileData extends SugarRecord { @Expose public Data data; public ProfileData(D
我有一个应用程序,我正在使用 Sugar ORM library v1.5创建数据库。我发布了第一个版本的应用程序,现在我想向数据库添加另一个表,我在以前的版本上安装了新版本但它崩溃了。这是我遇到的错
我们可以在 SugarORM 网站上阅读 Note: Record indexes start at index 1. 和 Load Entity: Book book = Book.findById
我有一个扩展 SugarRecord 的对象,如下所示: public class SavedDraft extends SugarRecord { private String name; priv
我正在为我的 Android 应用程序使用 SugarORM。在我的项目中,我有几个表,我想知道是否有办法将它们连接到另一个具有来自多个表的列的类对象中? 如果是,那么示例将非常有帮助。 最佳答案 S
我是第一次使用 SugarORM,我有一个简短的问题。如何将一个实体设置为主键?例如,我需要这样的东西: public class Student{ @PrimaryKey priva
我怎样才能删除 Log.i("Sugar", this.getClass().getSimpleName() + " saved : " + this.id); 在 SugarReco
我正在处理使用 SugarORM 的 Android 项目。现在方法限制增加了很多,我必须激活 multidex 支持。但是现在我遇到了 SugarORM 的问题,它只创建 classes.dex 文
我不熟悉 Sqlite,因此正在使用数据库库 SugarORM,其文档位于 http://satyan.github.io/sugar/creation.html 它的大部分功能与sqlite中的相同
我不明白如何使用 SugarORM 来保存数组列表中的信息。 for (int i =0 ; i ordersGo = new ArrayList<>(); ordersGo.add(ne
我有两个类(class),库存和配方。我遇到的问题是我无法将项目添加到配方表中。我收到以下错误消息: java.lang.IllegalStateException: Caused by: andro
SugarORM ,在我看来,是最容易使用的 SQLite 库,并且被证明对像我这样的初级 Android 开发人员非常有帮助。 SugarORM 自动创建表并为每个扩展 SugarRecord 的
我是一名优秀的程序员,十分优秀!