我已经搜索了很长一段时间,试图找到解决这个问题的方法并且没有运气。描述这个的最好方法是使用视觉:
当用户输入的内容超过一行时,可以扩展textView的一种方式是什么?
抱歉,这就是我的xml在listitem中的样子:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/tvItem"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/bDelete"
android:layout_alignBottom="@+id/bDelete"
android:layout_toLeftOf="@+id/bDelete"
android:layout_alignParentLeft="true"
android:layout_marginLeft="10dp"
android:text="Medium Text"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/bDelete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:textSize="15dp"
android:layout_alignParentTop="true"
android:layout_marginRight="5dp"
android:text="DONE" />
</RelativeLayout>
这就是主屏幕的xml(图片中的那个):
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/artport">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<Button
android:layout_alignParentRight="true"
android:id="@+id/bAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Add" />
<EditText
android:id="@+id/myEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/bAdd"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@+id/bAdd"
android:contentDescription="@string/addItemContentDescription"
android:ems="10"
android:hint="@string/addItemHint" />
</RelativeLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center">
<ListView
android:id="@+id/myListView"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
/>
<Button
android:id="@+id/bClearedList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/ad"
android:layout_weight="0"
android:text="View Deleted Items" />
<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:adUnitId="ca-app-pub-XXXXXXXXXXXXXXXXXXX"
ads:loadAdOnCreate="true"
android:layout_alignParentBottom="true"
>
</com.google.ads.AdView>
</LinearLayout>
</LinearLayout>
答案 0 :(得分:0)
在属性
中列表项的布局中 android:layout_height="wrap_content"
答案 1 :(得分:-1)
android:singleLine="false"