97c881c9创建于 4月20日历史提交
<?xml version="1.0" encoding="utf-8" ?>
<YogaLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/rt"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:yg_flexDirection="column"
    >
  <VirtualYogaLayout
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      app:yg_flexDirection="row"
      app:yg_height="50dp"
      >
    <Button
        android:id="@+id/btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="Run benchmark"
        app:yg_flex="1"
        />
    <Spinner
        android:id="@+id/benchmarkSelect"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:spinnerMode="dropdown"
        />
  </VirtualYogaLayout>
  <TextView
      android:id="@+id/text"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:textSize="10sp"
      android:fontFamily="monospace"
      app:yg_flex="1"
      />
  <View
      android:layout_width="match_parent"
      android:layout_height="2dp"
      android:background="@android:color/darker_gray"
      />
  <LinearLayout
      android:id="@+id/preview"
      android:layout_width="match_parent"
      android:layout_height="60dp"
      android:orientation="horizontal"
      />
</YogaLayout>