layout_music_chose.xml
1.59 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FFFFFF"
android:orientation="vertical"
tools:ignore="contentDescription">
<com.dayu.livemodule.xiaozhibo.common.widget.TCActivityTitle
android:id="@+id/music_ac_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#d8d8d8"
app:backText=""
app:titleText="选择歌曲" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/music_btn_search"
android:layout_width="match_parent"
android:layout_height="35dp"
android:layout_marginLeft="15dp"
android:layout_marginTop="15dp"
android:layout_marginRight="15dp"
android:background="@drawable/scan"
android:text="扫描本地音乐" />
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="10dp" />
<com.dayu.livemodule.xiaozhibo.anchor.music.MusicListView
android:id="@+id/music_list_view"
android:layout_width="match_parent"
android:layout_height="fill_parent">
</com.dayu.livemodule.xiaozhibo.anchor.music.MusicListView>
</LinearLayout>