7.18日问题集
ListView 可滚动与间隔设置
1.可滚动设置:transcriptMode
2.间隔设置:divider
<ListView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:transcriptMode="alwaysScroll"
android:divider="@null"
></ListView>
图片设置内边距padding
图片对其方式:layout_alignParentRight
<ImageView
android:layout_alignParentRight="true"
android:layout_width="70dp"
android:layout_height="70dp"
android:padding="10dp"
android:id="@+id/iv"
android:src="@drawable/robot"
/>
设置相对位置
如设置textview的右边:layout_toRightOf
设置与有边框的距离:android:layout_marginRight=”50dp”
设置在谁的下面:android:layout_below=”@+id/time”
<TextView
android:layout_below="@+id/time"
android:layout_marginRight="50dp"
android:layout_toRightOf="@+id/iv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/tv"
android:background="@drawable/aio_friend_bg_nor_11"
android:gravity="center"
/>
android inflater 用法
在实际开发中LayoutInflater这个类还是非常有用的,它的作用类似于findViewById()。不同点是LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化;而findViewById()是找xml布局文件下的具体widget控件(如Button、TextView等)。 具体作用: 1、对于一个没有被载入或者想要动态载入的界面,都需要使用LayoutInflater.inflate()来载入;
2、对于一个已经载入的界面,就可以使用Activiyt.findViewById()方法来获得其中的界面元素。
LayoutInflater 是一个抽象类,在文档中如下声明:
publicabstractclass LayoutInflater extends Object
获得 LayoutInflater 实例的三种方式
1.LayoutInflater inflater = getLayoutInflater(); //调用Activity的getLayoutInflater()
2.LayoutInflater localinflater =(LayoutInflater)context.getSystemService
(Context.LAYOUT_INFLATER_SERVICE);
- LayoutInflater inflater = LayoutInflater.from(context);