我正在尝试构建一个简单的表单,我想在顶部添加一个显示消息的注释/标题/标题。我试图这样做,但文字已经离开屏幕,它下面的东西也被推掉了。我该怎么解决这个问题?
以下是我的layout.xml
,此处位于pastebin:http://pastebin.com/fNBfQiz8
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:shrinkColumns="1"
android:stretchColumns="1" >
<TableRow
android:layout_marginBottom="2sp"
android:layout_marginTop="2sp"
android:layout_width="match_parent" >
<TextView
android:layout_width="match_parent"
android:text="You can only add a spot based on your current location" />
</TableRow>
<TableRow
android:layout_marginBottom="2sp"
android:layout_marginTop="2sp" >
<TextView android:text="Name:" />
<EditText android:id="@+id/name" />
</TableRow>
<TableRow
android:layout_marginBottom="2sp"
android:layout_marginTop="2sp" >
<TextView android:text="Address:" />
<EditText android:id="@+id/addr" />
</TableRow>
<TableRow
android:layout_marginBottom="2sp"
android:layout_marginTop="2sp" >
<TextView android:text="Type:" />
<Spinner
android:id="@+id/spinnerType"
style="@style/AppBaseTheme"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:entries="@array/types_array"
android:prompt="@string/types_prompt" />
</TableRow>
<TableRow
android:layout_marginBottom="2sp"
android:layout_marginTop="2sp" >
<TextView android:text="Terrain:" />
<Spinner
android:id="@+id/spinnerTerrain"
style="@style/AppBaseTheme"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:entries="@array/ratings_array"
android:prompt="@string/ratings_prompt" />
</TableRow>
<TableRow>
<TextView android:text="Difficulty:" />
<Spinner
android:id="@+id/spinnerDifficulty"
style="@style/AppBaseTheme"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:entries="@array/ratings_array"
android:prompt="@string/ratings_prompt" />
</TableRow>
<TableRow
android:layout_marginBottom="2sp"
android:layout_marginTop="2sp" >
<TextView android:text="Description:" />
<EditText
android:id="@+id/desc"
android:gravity="top"
android:inputType="textMultiLine"
android:lines="2"
android:maxLines="2"
android:scrollHorizontally="false" />
</TableRow>
<Button
android:id="@+id/save"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Save"
android:layout_marginBottom="2sp"
android:layout_marginTop="2sp" />
</TableLayout>
答案 0 :(得分:0)
我不确定我完全理解你在没看到照片的情况下遇到了什么问题,但我看了看你的pastebin。作为一般性注释,布局中的根视图(在您的情况下为ScrollView)的宽度和高度可能应该为match_parent
或fill_parent
,否则您可能会看到一些奇怪的渲染空白区域,其中没有布局覆盖屏幕或获得一些奇怪的滚动行为。
Here is a good tutorial which does nifty things with the spacing of the columns in TableLayouts and may help you figure out why your views are getting cut off and otherwise not fitting into the proper space.特别注意他在TableRows及其子项上使用的属性,以实现他想要的布局。
至于你想要显示一些标题信息的问题,我可以想到两个选项。
希望这会有所帮助。如果你发布了你现在看到的截图以及你想要的布局的某种类型的模型,它将有助于隔离你所拥有的问题,并帮助我们在社区提供支持。