【发布时间】:2011-07-08 21:49:13
【问题描述】:
我当前的布局显示的活动不是全屏(没关系)。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="100dip"
android:layout_height="200dip" >
<TextView android:layout_height="wrap_content" android:id="@+id/textView1"
android:layout_width="fill_parent" android:text="@string/hello"></TextView>
我还添加了 android:theme="@android:style/Theme.Translucent" 来体现我的活动。
我的 200x100dip 活动现在显示在左上角。如何指定线性布局(或活动)的位置?
【问题讨论】:
标签: android android-activity position