hjw
2023-04-20 a75addbc22f25b5fb219d3979f7bcd9cbf4942c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="@dimen/actionbar_hight"
    android:orientation="horizontal" 
    android:gravity="center_vertical"
    android:background="@color/blue_actionbar" >
 
    <LinearLayout 
        android:id="@+id/layout_bn_back"
        android:layout_width="50dp"
        android:layout_height="50dp" >
        <Button
           android:id="@+id/bn_back"
           android:layout_width="50dp"
           android:layout_height="50dp"
           android:background="@drawable/point" />
    </LinearLayout>
    
    
    <TextView
        android:id="@+id/action_bar_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:textColor="@android:color/white"
        android:textSize="20dp" />
</LinearLayout>