在下面的布局中,如果我在editText字段上写入文本,那么一些字符会被隐藏!原因是什么呢?或者可能的解是什么?提前感谢。
TableLayout
android:id="@+id/loginInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/errorMessageLayout"
android:layout_marginLeft="@dimen/login_screen_left_right_margine"
android:layout_marginRight="@dimen/login_screen_left_right_margine"
android:layout_centerHorizontal="true"
android:layout_marginTop="0dp"
android:paddingBottom="10dp"
android:stretchColumns="1" >
<TableRow
android:id="@+id/emailInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.philips.uGrowSmartBabyMonitor.CustomTextView
android:id="@+id/userEmailTextView"
android:layout_width="wrap_content"
android:layout_height="@dimen/login_field_row_height"
android:text="@string/Email"
style="@style/fieldLabel" />
<com.philips.uGrowSmartBabyMonitor.CustomEdittext
android:id="@+id/editTextEmail"
android:layout_width="match_parent"
android:layout_height="@dimen/login_field_row_height"
style="@style/editText"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:hint="@string/hint_email"
android:inputType="textEmailAddress" />
</TableRow>
在tablerow中总是使用weightSum,它将根据屏幕安排您的视图。试试这个:
<TableRow
android:id="@+id/emailInfoLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="2">
<com.philips.uGrowSmartBabyMonitor.CustomTextView
android:id="@+id/userEmailTextView"
android:layout_width="odp"
android:layout_weight="1"
android:layout_height="@dimen/login_field_row_height"
android:text="@string/Email"
style="@style/fieldLabel" />
<com.philips.uGrowSmartBabyMonitor.CustomEdittext
android:id="@+id/editTextEmail"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="@dimen/login_field_row_height"
style="@style/editText"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:hint="@string/hint_email"
android:inputType="textEmailAddress" />
</TableRow>
它会解决你的问题。
希望这对你有帮助:)
如果您有任何问题请告诉我。