Searched refs:KeyValueRow (Results 1 – 4 of 4) sorted by relevance
45 private final Map<CharSequence, KeyValueRow> mRows = new HashMap<>();92 protected KeyValueRow createKeyValueRow(ViewGroup parent) { in createKeyValueRow()93 KeyValueRow row = (KeyValueRow) mInflater.inflate(R.layout.table_key_value_row, null); in createKeyValueRow()110 protected KeyValueRow put(CharSequence key, CharSequence value) { in put()111 KeyValueRow row = mRows.get(key); in put()
39 public class KeyValueRow extends LinearLayout { class45 public KeyValueRow(Context context) { in KeyValueRow() method in KeyValueRow49 public KeyValueRow(Context context, AttributeSet attrs) { in KeyValueRow() method in KeyValueRow53 public KeyValueRow(Context context, AttributeSet attrs, int defStyleAttr) { in KeyValueRow() method in KeyValueRow
142 KeyValueRow row = put(mRes.getString(key), String.valueOf(value)); in put()
31 import com.android.documentsui.inspector.KeyValueRow;68 if (view instanceof KeyValueRow) { in getTableRows()