我正在開發Android Studio項目。我想在屏幕的底部添加一個Fragment
。到目前爲止這麼好,它的工作和展示。但是,當我想在頂部顯示RelativeLayout
時,它不會在模擬器上顯示,但會顯示在Android Studio的設備屏幕上。我需要佈局才能在屏幕頂部創建背景。我的代碼中是否有錯誤,或者有其他方法來創建背景嗎?RelativeLayout顯示在AndroidStudio的Devicescreen上,但不在Emulator上
這是我的XML代碼:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1"
android:background="#000">
<fragment
android:id="@+id/fragment1"
android:name="com.htlhl.listfragment.MyListFragment"
android:layout_width="match_parent"
android:layout_height="197dp"
android:layout_alignParentBottom="true" />
<!--The following RelativeLayout is not shown at the top-->
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:id="@+id/relativeLayout"
android:background="#00632e"
android:focusable="true">
<TextView
android:layout_width="250dp"
android:layout_height="30dp"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Medium Text"
android:gravity="center"
android:textColor="#000"
android:background="#fff"
android:id="@+id/textView2"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonBarButtonStyle"
android:layout_alignParentRight="true"
android:layout_centerHorizontal="true"
android:text="Start"
android:textColor="#fff"/>
</RelativeLayout>
</RelativeLayout>
Android的工作室:
模擬器和真實設備:
你能提供的截屏,無論是從Android Studio和設備?您可以編輯您的帖子以添加更多信息。 –
我試圖在真實設備(Moto G 2)上運行它,並且它在其中正常工作。 只是不依賴於仿真器總是試圖在真實的設備上進行測試。 –
謝謝你Maniya喬,我會嘗試。如果它不起作用,我會發布Aleksandar – Goetti