我只是想這樣做,但我不知道如何。這將是垂直線性佈局。我搜索了3個小時,還沒有發現任何有用的東西。半屏Android視圖
3
A
回答
2
我之前做過2個網頁瀏覽。我通過將android:layout_weight設置爲1來實現這兩種視圖,並且它填滿了屏幕。
如果您只想要1個網頁視圖,請爲其餘項目使用另一個線性佈局,並將android:layout_weight =「1」設置爲webview和線性佈局。
0
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:weightSum="1">
Web瀏覽器按鈕
button = (Button) findViewById(R.id.btn_webbrowser);
button.setOnClickListener(new OnClickListener()
{
public void onClick(View arg0){
Intent i = new
Intent(android.content.Intent.ACTION_VIEW,
Uri.parse(「http://www.amazon.com」));
startActivity(i);
}
});
5
設置等於對方你的孩子瀏覽的權重應該平分他們:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<WebView
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<Space
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
+0
謝謝你正確的例子,但nithinreddy回答了第一個,所以我必須檢查他的。 –
相關問題
- 1. 半屏視圖vs viewController
- 2. Android半屏活動
- 3. 如何呈現半屏模態視圖?
- 4. 調整視圖重疊半個屏幕
- 5. Android MapView半屏白錯誤
- 6. Android如何劃分半屏?
- 7. Android 2圖像視圖,左半側半顯示,右半側顯示
- 8. AFreeChart Android全屏視圖
- 9. 模態視圖在iPad的屏幕右半部分?
- 10. 顯示從頂部向下滑動的半屏視圖
- 11. 如何設置屏幕高度一半的視圖?
- 12. 如何在Xamarin表單中創建半屏相機視圖
- 13. 將Android屏幕分成兩半等分
- 14. 僅在半屏上顯示Android WebView
- 15. 多點觸摸android froyo半屏
- 16. Android AutoCompleteTextView建議出現半屏
- 17. 半屏TabHost
- 18. 半屏活動
- 19. 響應式網站只佔用iPad屏幕平板視圖的一半屏幕
- 20. UISwipeGestureRecognizer的視圖的一半
- 21. xml視圖的半徑角
- 22. 如何在Motorola Atrix上運行android應用程序時啓用半屏大小的全屏視圖?
- 23. 在地圖視圖中繪製一定半徑的圓圈android
- 24. 如何在Android視圖中添加半透明覆蓋圖?
- 25. Android微調器全屏視圖
- 26. Android視圖和屏幕取向
- 27. Android:拖動視圖在屏幕外
- 28. 全屏Android軟鍵盤表面視圖
- 29. Android中的屏幕和視圖座標
- 30. Android - 自定義視圖顯示黑屏
退房這個問題:http://stackoverflow.com/問題/ 4315332/how-to-create-two-views-in-android-that-use-50-height-each-unless-one-is-small – jorgenfb
@Tomi S:你好我正面臨着像...... if我打開google.com或在網絡視圖(高度= 200dp)中說yahoo.com,它顯示第一個200dp空白的網頁視圖,然後打開谷歌/雅虎頁面全屏...我只是嘗試與www.ya.com,它爲我工作...在這裏的任何幫助? – CoDe
在這裏相同...如果我點擊任何鏈接,然後它打開一個新的全屏頁面,而不是打開在相同的200dp高度webview ....任何想法在這? – CoDe