我有一個線性佈局2個EditTexts和他們沒有得到ellipsized安卓:EditText上沒有得到ellipsized
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#696969"
android:layout_marginBottom ="5px">
<EditText
android:id="@+id/addressbar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft ="2px"
android:layout_marginRight ="1.5px"
android:layout_weight="0.35"
android:textSize = "15sp"
android:singleLine="true"
android:editable = "true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:ellipsize="end"
android:imeOptions="actionGo"
/>
<EditText android:id="@+id/googlebar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft ="1.5px"
android:layout_marginRight ="3px"
android:background="@android:drawable/editbox_background"
android:layout_weight="0.65"
android:hint="Google"
android:textSize = "15sp"
android:singleLine="true"
android:ellipsize="end"
android:imeOptions="actionSearch"
/>
</LinearLayout>
你覺得呢?
有什麼解決方法嗎? – Alex1987 2011-03-04 22:07:50
如果你看看這兩個鏈接,人們已經設法找到一些解決辦法,但他們似乎沒有一個全面的工作。我在原始答案中發佈的組合似乎適用於我。 – 2011-03-04 22:36:24
我在第二個EditText上嘗試了這個,並且它不起作用... – Alex1987 2011-03-04 22:47:52