运行Android Studio 1.0.2并且在调整微调器时遇到问题。 我希望在一行上布局为50/50。
text:spinner。
的strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="country_arrays">
<item>Malaysia</item>
<item>United States</item>
<item>Indonesia</item>
<item>France</item>
<item>Italy</item>
<item>Singapore</item>
<item>New Zealand</item>
<item>India</item>
</string-array>
</resources>
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<TableLayout
android:id="@+id/tblSpinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:weightSum="100">
<TableRow>
<TextView
android:id="@+id/textViewSelect"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="50"
android:text="Select item:"/>
<Spinner
android:id="@+id/spinner1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="50"
android:entries="@array/country_arrays"/>
</TableRow>
</TableLayout>
</RelativeLayout>
目前,微调器占据了宽度的90%,textview为10%。
答案 0 :(得分:0)
尝试将android:layout_width更改为fill_parent
答案 1 :(得分:0)
尝试将布局宽度从wrap_content更改为实际宽度。它将特定您的布局和平台,因此请谨慎使用。
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#33777777"
android:layout_margin="1dip"
android:gravity="center_vertical"
android:padding="5dip">
<TextView
android:id="@+id/profileName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="TextView\nthis" />
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyle"
a`ndroid:layout_width="30dip"`
android:layout_height="wrap_content" />
</TableRow>