Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. <!-- Application theme. -->
  2. <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
  3. <item name="android:buttonStyle">@style/button_style</item>
  4. <item name="colorPrimary">@color/colorPrimary</item>
  5. <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
  6. <item name="colorAccent">@color/colorAccent</item>
  7. </style>
  8.  
  9. <style name="button_style" parent="Widget.AppCompat.Button">
  10. <item name="android:backgroundTint">@color/white_blue</item>
  11. <item name="android:textColor">@android:color/white</item>
  12. </style>
  13.  
  14. <Button
  15. android:id="@+id/b_splash_screen_start"
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:text="@string/start"
  19. app:layout_constraintBottom_toBottomOf="parent"
  20. app:layout_constraintEnd_toEndOf="parent"
  21. app:layout_constraintHorizontal_bias="0.5"
  22. app:layout_constraintStart_toStartOf="parent"
  23. app:layout_constraintTop_toBottomOf="@+id/appCompatTextView"/>
  24.  
  25. import android.support.v4.app.Fragment;
  26.  
  27. import android.support.v7.app.AppCompatActivity;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement