|
@@ -1,4 +1,40 @@
|
|
|
-<resources xmlns:tools="http://schemas.android.com/tools">
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
|
|
|
+
|
|
|
+ <!--自适应高度-->
|
|
|
+ <style name="layout_properties_self_adaption" tools:ignore="ResourceName">
|
|
|
+ <item name="android:layout_width">wrap_content</item>
|
|
|
+ <item name="android:layout_height">wrap_content</item>
|
|
|
+ </style>
|
|
|
+
|
|
|
+ <!--指定宽度和高度-->
|
|
|
+ <style name="layout_properties_specify_width_geight" tools:ignore="ResourceName">
|
|
|
+ <item name="android:layout_width">match_parent</item>
|
|
|
+ <item name="android:layout_height">match_parent</item>
|
|
|
+ </style>
|
|
|
+
|
|
|
+ <!--指定宽度-->
|
|
|
+ <style name="layout_properties_specify_width" tools:ignore="ResourceName">
|
|
|
+ <item name="android:layout_width">match_parent</item>
|
|
|
+ <item name="android:layout_height">wrap_content</item>
|
|
|
+ </style>
|
|
|
+
|
|
|
+ <style name="text_personal_center" tools:ignore="ResourceName">
|
|
|
+ <item name="android:layout_width">0dp</item>
|
|
|
+ <item name="android:layout_height">wrap_content</item>
|
|
|
+ <item name="android:textSize">@dimen/divider_24px</item>
|
|
|
+ <item name="android:textColor">@color/color_FF333333</item>
|
|
|
+ <item name="layout_constraintHorizontal_weight">1</item>
|
|
|
+ </style>
|
|
|
+
|
|
|
+ <style name="text_bottom_live_broadcast" tools:ignore="ResourceName">
|
|
|
+ <item name="android:layout_width">wrap_content</item>
|
|
|
+ <item name="android:layout_height">wrap_content</item>
|
|
|
+ <item name="android:textSize">@dimen/divider_24px</item>
|
|
|
+ <item name="android:textColor">@android:color/white</item>
|
|
|
+ <item name="android:textStyle">bold</item>
|
|
|
+ <item name="android:layout_marginTop">@dimen/divider_49px</item>
|
|
|
+ </style>
|
|
|
|
|
|
<style name="workbenches_home_text">
|
|
|
<item name="android:layout_width">wrap_content</item>
|
|
@@ -166,4 +202,5 @@
|
|
|
<item name="android:textColor">@color/coloe_FF9FA5B4</item>
|
|
|
<item name="android:textSize">@dimen/divider_24px</item>
|
|
|
</style>
|
|
|
-</resources>
|
|
|
+
|
|
|
+</resources>
|