Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- у файлі res/values/colors.xml-->
- <color name="primaryColor">#6200EA</color>
- <color name="secondaryColor">#03DAC5</color>
- <!-- у файлі res/values/strings.xml-->
- <string name="app_name">My Application</string>
- <string name="welcome_message">Welcome to My App!</string>
- <!-- у файлі res/values/dimens.xml -->
- <dimen name="margin">16dp</dimen>
- <dimen name="text_size">18sp</dimen>
- <!-- у файлі res/layout/activity_main.xml -->
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- android:background="@color/primaryColor">
- <TextView
- android:id="@+id/welcomeText"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/welcome_message"
- android:textSize="@dimen/text_size"
- android:textColor="@color/secondaryColor"
- android:layout_margin="@dimen/margin"/>
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Click me!"
- android:layout_marginTop="16dp"/>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement