简体   繁体   English

如何在Android的SQLite数据库中存储Bangla字体

[英]How to store Bangla font in SQLite database in Android

In which way i can store bangla language in SQLite database in Android. 我可以通过哪种方式将孟加拉语言存储在Android的SQLite数据库中。 Please help me. 请帮我。

Please try something like this 请尝试这样的事情

public boolean insert() {
  SQLiteDatabase db = this.getWritableDatabase();
  ContentValues contentValues = new ContentValues();
  contentValues.put("question", "তুমি কেমন আছ?");

  db.insert("questions", null, contentValues);
  return true;
}

I am just trying to mention that we can put whatever we want to store inside quotation marks and it will store it. 我只是想提一下,我们可以将要存储的任何内容放在引号内,并将其存储起来。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM