22 lines
702 B
XML
22 lines
702 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/top_name1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="58dp"
|
|
android:layout_marginTop="1dp"
|
|
android:layout_marginLeft="0.5dp"
|
|
android:layout_marginRight="0.5dp"
|
|
android:background="@color/white"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/top_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:textColor="@color/black"
|
|
android:textSize="25sp" />
|
|
|
|
</LinearLayout>
|