You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
XML
34 lines
1.0 KiB
XML
|
10 months ago
|
<?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="match_parent"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<ImageButton
|
||
|
|
android:id="@+id/ibtn_sub"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:background="#00ffffff"
|
||
|
|
android:src="@mipmap/sub" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:textColor="@color/bule"
|
||
|
|
android:id="@+id/tv_num"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="center"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:gravity="center"
|
||
|
|
android:textSize="18sp" />
|
||
|
|
|
||
|
|
<ImageButton
|
||
|
|
android:id="@+id/ibtn_add"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:background="#00ffffff"
|
||
|
|
android:src="@mipmap/add" />
|
||
|
|
|
||
|
|
</LinearLayout>
|