我有一个问题:
使用此xml布局:
<?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">
<EditText android:id="@+id/nomenota"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<EditText android:id="@+id/corponota"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="textMultiLine"/>
<TableLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TableRow >
<Button android:id="@+id/visualizza_notaOK"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/notaOK"/>
<Button android:id="@+id/nota_annulla"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/nuovanotaannulla"/>
</TableRow>
</TableLayout>
我的活动如下所示:
正如你所看到的,我的信息正文以一个大的编辑文本为中心,我不想要这个结果 我想要的结果就像这个链接:link of layout that i want to achieve
有人帮我吗?
提前谢谢。
马可。
答案 0 :(得分:5)
在edittext android:gravity="top"