|
@@ -19,21 +19,26 @@
|
|
|
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
-->
|
|
|
|
|
|
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:alpha="0.7"
|
|
|
- android:background="@color/colorPrimary"
|
|
|
- android:elevation="5dp">
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1px"
|
|
|
+ android:background="?android:attr/listDivider"/>
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/title_text_view"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_marginBottom="8dp"
|
|
|
- android:layout_marginEnd="24dp"
|
|
|
- android:layout_marginStart="12dp"
|
|
|
+ android:layout_marginEnd="16dp"
|
|
|
+ android:layout_marginStart="16dp"
|
|
|
android:layout_marginTop="8dp"
|
|
|
- android:textColor="@color/nc_white_color_complete"/>
|
|
|
+ android:layout_marginBottom="8dp"
|
|
|
+ android:textColor="@color/colorPrimary"
|
|
|
+ tools:text="A"/>
|
|
|
|
|
|
-</RelativeLayout>
|
|
|
+</LinearLayout>
|