0

我需要显示人名实际上我显示人的 id

 public void onViewBind(View view, Cursor cursor, ODataRow row) {
 OControls.setText(view, R.id.name, row.getString("person_id"));
  }

类(制裁)和(ResPartner)之间存在关系manyToOne

在这个类(制裁)我把这个代码

public class Sanction extends OModel {
public static final String TAG = Sanction.class.getSimpleName();
public static final String AUTHORITY = "com.odoo.Etudiant";
 OColumn person_id = new OColumn("name", ResPartner.class, 
 OColumn.RelationType.ManyToOne);

他向我显示了人的身份,但我需要显示他的名字我该怎么办?

4

1 回答 1

0

尝试这个

String[] rows = row.getString("person_id").spit(",");  
if(rows != null){
   if(rows[1] != null){
      String name = rows[1];
   }
}

希望这对你有用

于 2018-04-04T08:47:11.230 回答