Q
安卓:搜索框設計
0
A
回答
0
你有沒有試過移動JQuery的實用程序?實現這一點應該不難。
1
你應該使用RelativeLayout
&集的ImageView align_parent_top & align_parent_right 或者如果你使用LinearLayout
那麼你可以這樣試試:---
<LinearLayout
android:id="@+id/ll_my_profile"
android:layout_width="fill_parent"
android:layout_height="45dp"
android:layout_marginLeft="10dp"
android:clickable="true"
android:layout_marginRight="10dp"
android:background="@drawable/txt_box_bg"
android:orientation="horizontal" >
<TextView
android:id="@+id/my_profile"
android:layout_width="0dip"
android:layout_height="45dp"
android:layout_weight="1"
android:gravity="left"
android:hint="My Profile"
android:padding="10dp"
android:textColor="#000000"
android:textSize="18dp" />
<ImageView
android:id="@+id/img_for_setting"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="right|center_vertical"
android:background="@drawable/arrow" />
</LinearLayout>
0
根據搜索框是如何在你的應用中使用,它可能最適合使用Action Views in the ActionBar。這是Google建議的在活動中添加可擴展的響應式搜索框的方式。
對於SDK 11之前的Android版本,您可以使用兼容性庫ActionBarSherlock實現所有相同的功能。雖然我自己並沒有在ActionBarSherlock中使用可擴展的搜索欄,但它看起來可能在這裏使用SearchView。
希望有幫助!
0
創建線性佈局。將其背景設置爲完整的編輯框圖像。在線性佈局內添加一個編輯框和按鈕。將按鈕的背景設置爲android:background =「@ drawable/searchbtn」。 將編輯框的背景設置爲無圖像(透明圖像)。完成。
+1
不是我正在尋找的答案。請再次閱讀我的查詢。 – Nitish
相關問題
- 1. 安卓搜索對話框定製
- 2. 搜索通過安卓
- 3. 安卓:SQLite的搜索
- 4. 安卓搜索與建議
- 5. 搜索通過安卓
- 6. 安卓:爲搜索欄
- 7. 安卓搜索在ActionBar
- 8. 安卓類的設計
- 9. 安卓操作欄的搜索按鈕
- 10. 安卓:Wifi和藍牙搜索一起
- 11. 安卓:視頻搜索+手勢
- 12. 安卓在ListFragment中實現搜索
- 13. 安卓:創建搜索,從不同actvities
- 14. 附加搜索功能按鈕(安卓)
- 15. 從數據庫安卓搜索siggestions
- 16. 安卓:多重搜索模式
- 17. 谷歌安卓市場搜索結果
- 18. 安卓在網站上搜索信息
- 19. 安卓谷歌和雅虎搜索EditText
- 20. 安卓搜索欄劃分行業
- 21. 安卓菜單搜索按鈕
- 22. 安卓:搜索意圖不工作
- 23. 使搜索「塊」,在文本框,像Pinterest的SEACH安卓
- 24. 安卓搜索對話框不起作用
- 25. Mysql搜索設計
- 26. 爲搜索設計
- 27. 安卓搜索歷史記錄快速搜索
- 28. 安卓搜索按鈕和搜索字段在行動吧
- 29. 安卓:設置maxHeight參數編程的進度/搜索欄
- 30. 建議多插槽設計(安卓)
我的要求是,最初edittext應該顯示爲上面張貼的第一張圖片,當我點擊它時,它應該展開,如我在第二張圖片中所示。 – Nitish
這只是使用RelativeLayout&使RelativeLayout方向水平&採取edittext&imageview&在圖像視圖放在這種方式: - –