我一直在开发应用程序,但我遇到了问题。 我正在尝试使用背景的textview移动到当前屏幕之上。预览会正确呈现,但模拟器和我的设备都不会显示它。 这是我的代码 -
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="0dp"
android:paddingBottom="0dp" tools:context=".Inspection"
android:baselineAligned="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false">
<fragment
android:id="@+id/nativeuser_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.aadevs.thetabapp.NativeUserFragment"
android:layout_weight="0.5"
tools:layout="@layout/fragment_nativeuser" />
<fragment
android:id="@+id/otheruser_fragment"
android:name="com.aadevs.thetabapp.OtherUserFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.5"
tools:layout="@layout/fragment_otheruser" />
</LinearLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:paddingLeft="40dp"
android:paddingRight="40dp"
android:paddingBottom="60dp"
android:paddingTop="60dp"
android:background="@drawable/debtcircle">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hey there"
android:layout_gravity="center"/>
</RelativeLayout>
这是我的可绘制债务的代码 -
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring">
<stroke
android:width="2px"/>
<solid android:color="#FFFFFF"/>
以下是不同的渲染(预览,模拟器和设备)
如您所见,预览工作正常,但仿真器和设备无法按预期工作。 有人能帮助我吗?
答案 0 :(得分:0)
你的绘画中有问题....你应该使用下面的drawable ......
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<stroke
android:width="2dp"
android:color="strokeColorHere"/>
<solid android:color="#FFFFFF"/>
</shape>
如果你想要给出笔触颜色......只需使用它......