Android 6.0 +,Java 1.8。 在我的android应用中。
这是我的自定义布局xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:binding="http://www.gueei.com/android-binding/"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/containerAmount"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_margin="16dp" >
<EditText
android:id="@+id/send_editAmount"
android:layout_width="0dip"
android:layout_height="40dip"
android:layout_weight="0.7"
android:background="@drawable/backwithborder_notfocus"
binding:text="amount" >
</EditText>
<View
android:layout_width="8dip"
android:layout_height="wrap_content" />
<RelativeLayout
android:id="@+id/rl"
android:layout_width="0dip"
android:layout_height="40dip"
android:layout_weight="0.3"
android:background="@drawable/backwithborder_notfocus" >
<Spinner
android:id="@+id/currencySpinner"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>
这是我的自定义可绘制对象backwithborder_notfocus.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<!-- background color -->
<solid android:color="#FAFAF8" />
<stroke
android:width="1dip"
android:color="#CCCCCC" />
</shape>
这是在Android 6.0上获得的结果
如您所见,三角形不在角上。也有一个底线。我该如何解决? 编辑文字具有相同的背景。
答案 0 :(得分:0)
解决方案:
更改此:
<Spinner
android:id="@+id/currencySpinner"
android:layout_width="wrap_content"
android:layout_height="match_parent" />
收件人:
<Spinner
android:id="@+id/currencySpinner"
android:layout_width="match_parent"
android:layout_height="match_parent" />
希望有帮助。
答案 1 :(得分:0)
我找到了解决方法:
<RelativeLayout
android:id="@+id/rl"
android:layout_width="0dip"
android:layout_height="40dip"
android:layout_weight="0.3"
android:background="@drawable/racommon_backwithborder_notfocus" >
<Spinner
android:id="@+id/currencySpinner"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@null" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:src="@drawable/ic_action_popup" />
</RelativeLayout>
现在就像我想要的一样: