0

Запуск Android Studio 1.0.2 и у меня проблемы с изменением размера счетчика. Я хотел бы, чтобы макет был 50/50 на одной строке.Невозможно изменить размер счетчика в tablelayout

текст: прядильщик.

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

Попробуйте изменить 'андроида: layout_width' в' fill_parent'. –

+0

Спасибо тонну. Так оно и было. Старался заставить его работать часами :) – Greg

ответ

0

Попробуйте изменить андроида: layout_width к fill_parent

 Смежные вопросы

  • Нет связанных вопросов^_^