Advertisement
Viktor_Profa

Основи мобільної розробки в AS Робота з ресурсами

Oct 27th, 2024
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.24 KB | None | 0 0
  1.  <!-- у файлі res/values/colors.xml-->
  2.  
  3. <color name="primaryColor">#6200EA</color>
  4. <color name="secondaryColor">#03DAC5</color>
  5.  
  6.  <!-- у файлі res/values/strings.xml-->
  7.  
  8. <string name="app_name">My Application</string>
  9. <string name="welcome_message">Welcome to My App!</string>
  10.  
  11.  <!-- у файлі res/values/dimens.xml -->
  12.  
  13. <dimen name="margin">16dp</dimen>
  14. <dimen name="text_size">18sp</dimen>
  15.  
  16. <!-- у файлі res/layout/activity_main.xml -->
  17.  
  18. <LinearLayout
  19.    xmlns:android="http://schemas.android.com/apk/res/android"
  20.    android:layout_width="match_parent"
  21.    android:layout_height="match_parent"
  22.    android:orientation="vertical"
  23.    android:background="@color/primaryColor">
  24.  
  25.     <TextView
  26.        android:id="@+id/welcomeText"
  27.        android:layout_width="wrap_content"
  28.        android:layout_height="wrap_content"
  29.        android:text="@string/welcome_message"
  30.        android:textSize="@dimen/text_size"
  31.        android:textColor="@color/secondaryColor"
  32.        android:layout_margin="@dimen/margin"/>
  33.    
  34.     <Button
  35.        android:layout_width="wrap_content"
  36.        android:layout_height="wrap_content"
  37.        android:text="Click me!"
  38.        android:layout_marginTop="16dp"/>
  39. </LinearLayout>
  40.  
  41.  
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement