當前位置: 首頁>>代碼示例>>Java>>正文


Java MatrixCursor.moveToNext方法代碼示例

本文整理匯總了Java中android.database.MatrixCursor.moveToNext方法的典型用法代碼示例。如果您正苦於以下問題:Java MatrixCursor.moveToNext方法的具體用法?Java MatrixCursor.moveToNext怎麽用?Java MatrixCursor.moveToNext使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在android.database.MatrixCursor的用法示例。


在下文中一共展示了MatrixCursor.moveToNext方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: query

import android.database.MatrixCursor; //導入方法依賴的package包/類
public Cursor query(
    @NonNull Uri paramUri,
    String[] paramArrayOfString1,
    String paramString1,
    String[] paramArrayOfString2,
    String paramString2) {
  MatrixCursor cursor = new MatrixCursor(new String[] {"string"});
  try {
    if (getContext() == null) {
      return cursor;
    }
    final String path = paramUri.getPath().substring(1);
    final String[] items = getContext().getAssets().list(path);
    for (String s : items) {
      cursor.newRow().add(s);
      cursor.moveToNext();
    }
    cursor.moveToFirst();
  } catch (Exception e) {
    cursor.close();
    throw new RuntimeException(e);
  }
  return cursor;
}
 
開發者ID:afollestad,項目名稱:polar-dashboard,代碼行數:25,代碼來源:TemplateProvider.java

示例2: testNullValue

import android.database.MatrixCursor; //導入方法依賴的package包/類
public void testNullValue() {
    MatrixCursor cursor = new MatrixCursor(new String[] { "a" });
    cursor.newRow().add(null);
    cursor.moveToNext();
    assertTrue(cursor.isNull(0));
    assertNull(cursor.getString(0));
    assertNull(cursor.getBlob(0));
    assertEquals(0, cursor.getShort(0));
    assertEquals(0, cursor.getInt(0));
    assertEquals(0L, cursor.getLong(0));
    assertEquals(0.0f, cursor.getFloat(0));
    assertEquals(0.0d, cursor.getDouble(0));
}
 
開發者ID:doppllib,項目名稱:core-doppl,代碼行數:14,代碼來源:MatrixCursorTest.java

示例3: testMatrixCursor

import android.database.MatrixCursor; //導入方法依賴的package包/類
public void testMatrixCursor() {
    MatrixCursor cursor = newMatrixCursor();

    cursor.newRow()
            .add("a")
            .add(1)
            .add(2)
            .add(3)
            .add(4)
            .add(5)
            .add(new byte[] {(byte) 0xaa, (byte) 0x55});

    cursor.moveToNext();

    checkValues(cursor);

    cursor.newRow()
            .add("a")
            .add("1")
            .add("2")
            .add("3")
            .add("4")
            .add("5")
            .add(new byte[] {(byte) 0xaa, (byte) 0x55});

    cursor.moveToNext();
    checkValues(cursor);

    cursor.moveToPrevious();
    checkValues(cursor);
}
 
開發者ID:doppllib,項目名稱:core-doppl,代碼行數:32,代碼來源:MatrixCursorTest.java

示例4: testAddArray

import android.database.MatrixCursor; //導入方法依賴的package包/類
public void testAddArray() {
    MatrixCursor cursor = newMatrixCursor();

    cursor.addRow(new Object[] { "a", 1, 2, 3, 4, 5, new byte[] {(byte) 0xaa, (byte) 0x55} });
    cursor.moveToNext();
    checkValues(cursor);

    try {
        cursor.addRow(new Object[0]);
        fail();
    } catch (IllegalArgumentException e) { /* expected */ }
}
 
開發者ID:doppllib,項目名稱:core-doppl,代碼行數:13,代碼來源:MatrixCursorTest.java

示例5: query

import android.database.MatrixCursor; //導入方法依賴的package包/類
public Cursor query(Uri paramUri, String[] paramArrayOfString1, String paramString1, String[] paramArrayOfString2, String paramString2) {
    MatrixCursor cursor = new MatrixCursor(new String[]{"string"});
    try {
        final String path = paramUri.getPath().substring(1);
        for (String s : getContext().getAssets().list(path)) {
            cursor.newRow().add(s);
            cursor.moveToNext();
        }
        cursor.moveToFirst();
    } catch (Exception e) {
        e.printStackTrace();
    }
    return cursor;
}
 
開發者ID:Technologx,項目名稱:Fire-Bird-Dashboard-for-Zooper,代碼行數:15,代碼來源:TemplateProvider.java


注:本文中的android.database.MatrixCursor.moveToNext方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。