1.修改label就是修改title——setTitle就可以了。
2.布局左右靠边
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="当前温度:" />
<TextView
android:id="@+id/tv_nowTem"
android:layout_width="80dp"
android:gravity="center"
android:layout_height="wrap_content"
android:background="@drawable/abc" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="当前湿度:" />
<TextView
android:id="@+id/tv_nowhum"
android:gravity="center"
android:layout_width="80dp"
android:layout_height="wrap_content"
android:background="@drawable/abc" />
</LinearLayout>
</LinearLayout>