Android TextView和ImageView简单说明
程序员文章站
2023-11-29 08:10:40
复制代码 代码如下:
<?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="vertical" >
<textview
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:drawableleft="@drawable/icon"
android:text="@string/app_name"
/>
</linearlayout>
相信看到这个标签的时候大家都明白了把!
android:drawableleft=""
android:drawableright=""
android:drawabletop=""
android:drawablebottom=""
四个标签,android:drawablepadding=""可以设置边框大小,我觉得很使用,不用想以前那么用relativelayout中去light或者right了!
复制代码 代码如下:
<?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="vertical" >
<textview
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:drawableleft="@drawable/icon"
android:text="@string/app_name"
/>
</linearlayout>
相信看到这个标签的时候大家都明白了把!
复制代码 代码如下:
android:drawableleft=""
android:drawableright=""
android:drawabletop=""
android:drawablebottom=""
四个标签,android:drawablepadding=""可以设置边框大小,我觉得很使用,不用想以前那么用relativelayout中去light或者right了!
下一篇: 搜狗浏览器表单怎么清除保存的数据?