Browse Source

Update activity_basic_chart.xml

An An 3 years ago
parent
commit
9e0f09d26d
1 changed files with 21 additions and 16 deletions
  1. 21 16
      sample/src/main/res/layout/activity_basic_chart.xml

+ 21 - 16
sample/src/main/res/layout/activity_basic_chart.xml

@@ -77,50 +77,55 @@
         </RadioGroup>
 
         <RadioGroup
-                android:id="@+id/markerSymbolTypeRadioGroup"
                 android:layout_width="match_parent"
                 android:layout_height="38dp"
+                android:id="@+id/markerSymbolTypeRadioGroup"
                 android:orientation="horizontal">
 
             <RadioButton
-                    android:id="@+id/symbol1"
+                    android:id="@+id/circleSymbolRadio"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:layout_weight="1"
-                    android:text="1"
-                    android:textColor="@color/mediumGray" />
+                    android:textColor="@color/lightGray"
+                    android:textSize="22dp"
+                    android:text="⬤⬤" />
 
             <RadioButton
-                    android:id="@+id/symbol2"
+                    android:id="@+id/squareSymbolRadio"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:layout_weight="1"
-                    android:text="2"
-                    android:textColor="@color/mediumGray" />
+                    android:textColor="@color/lightGray"
+                    android:textSize="22dp"
+                    android:text="■■" />
 
             <RadioButton
-                    android:id="@+id/symbol3"
+                    android:id="@+id/diamondSymbolRadio"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:layout_weight="1"
-                    android:text="3"
-                    android:textColor="@color/mediumGray" />
+                    android:textColor="@color/lightGray"
+                    android:textSize="22dp"
+                    android:text="◆◆" />
 
             <RadioButton
-                    android:id="@+id/symbol4"
+                    android:id="@+id/triangleSymbolRadio"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:layout_weight="1"
-                    android:text="4"
-                    android:textColor="@color/mediumGray" />
+                    android:textColor="@color/lightGray"
+                    android:textSize="22dp"
+                    android:text="▲▲" />
 
             <RadioButton
-                    android:id="@+id/symbol5"
+                    android:id="@+id/triangleDownSymbolRadio"
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:layout_weight="1"
-                    android:text="5"
-                    android:textColor="@color/mediumGray" />
+                    android:textColor="@color/lightGray"
+                    android:textSize="22dp"
+                    android:text="▼▼" />
         </RadioGroup>
 
         <LinearLayout