我有一个带有textview和edittext的相对布局。 edittext在同一行与textview的左(或右)对齐。
如何使edittext扩展到屏幕的最边缘(使用xml)。 设置宽度不合适,因为我可能有不同的分辨率。
答案 0 :(得分:1)
如果你想在Android而不是XML中使用它,另一种方法是,如果你得到屏幕的宽度,那么你可以把它放在edittext的维度中
这是获取宽度的代码:
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int width = size.x;
答案 1 :(得分:1)
如果您想使用TableLayout,可以使用以下代码。 TableLayout也可以。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".MainActivity" >
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:stretchColumns="*"
android:shrinkColumns="*">
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp" >
<TextView
android:id="@+id/textView"
android:layout_weight="3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Username"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/editText"
android:layout_weight="7"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:ems="5"
android:hint="Password"
android:textAppearance="?android:attr/textAppearanceLarge" />
</TableRow>
</TableLayout>
</LinearLayout>
答案 2 :(得分:0)
您可以在相对布局中使用线性布局。此外,您可以放置视图的重量,因此它将扩展并将覆盖不同分辨率的设备宽度。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent">
<LinearLayout android:orientation="horizontal"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:weightSum="1.0">
<LinearLayout android:layout_weight="0.2"
android:layout_height="wrap_content"
android:layout_width="0dp"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/text"
android:text="Username"/>
</LinearLayout>
<LinearLayout android:layout_weight="0.8"
android:layout_height="wrap_content"
android:layout_width="0dp">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/edit_query"
android:hint="password"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>