放在res目录下的资源会生成id,放assets的不会… 存放一些二进制外挂文件,和res下的ra […]
6月 252017
放在res目录下的资源会生成id,放assets的不会… 存放一些二进制外挂文件,和res下的ra […]
1. 打开菜单Android Studio->Preferences… 2. 打开左侧导航列 […]
1. 打开菜单File->Settings 2. 打开左侧导航列表Tools->External […]
一、问题 通过adb连接android设备时,出现了如下错误: error: insufficient per […]
博文背景:博主要实现app的左侧导航按钮功能,因为要实现某个导航按钮被选中的效果,所以没有使用ListVi […]
本文使用数据库为:Mysql 当我们想使用insert into为一个表的所有字段插入一条数据时,我们可以这样 […]
这个精度的损失给本人造成了精神损失! :cry: 整数相除,然后用ceil向上取整,本以为多简单个事 […]
如下图,第二行的ImageView和TextView的layout_width属性都为wrap_content […]
部局的xml如下:
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:baselineAligned="false"> <LinearLayout android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="3" android:orientation="vertical" android:padding="10dp"> <TextView android:id="@+id/tvSongName" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="10dp" android:ellipsize="marquee" android:focusable="auto" android:focusableInTouchMode="true" android:text="光辉岁月" android:textSize="18sp" android:textStyle="bold" /> <TextView android:id="@+id/tvSinger" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_weight="1" android:ellipsize="end" android:text="演唱:Beyond" /> <TextView android:id="@+id/tvAlbum" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="5dp" android:layout_weight="1" android:ellipsize="end" android:text="专辑:光辉岁月" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_weight="1" android:gravity="center_vertical" android:orientation="horizontal"> <TextView android:id="@+id/tvPlayPosition" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="5dp" android:text="00:00" /> <ProgressBar android:id="@+id/progressBar2" style="?android:attr/progressBarStyleHorizontal" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" /> <TextView android:id="@+id/tvDuration" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:text="00:00" /> </LinearLayout> </LinearLayout> <LinearLayout android:layout_width="0dp" android:layout_height="match_parent" android:layout_weight="2" android:orientation="horizontal"> <ImageView android:id="@+id/imgCover" android:layout_width="match_parent" android:layout_height="match_parent" android:adjustViewBounds="true" android:minWidth="150dp" android:minHeight="150dp" android:scaleType="centerInside" android:src="@drawable/default_cover" /> </LinearLayout> </LinearLayout> |
部局的预览图如下 音乐标 […]