16 lines
508 B
XML
16 lines
508 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/touchView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:padding="8dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/codeTextItemView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textSize="15dp"
|
||
|
android:text="项目"/>
|
||
|
|
||
|
</LinearLayout>
|