我正在寻找一种在 android 4.1 及更高版本中使用来自 android L 的圆形按钮的方法,例如“新”google plus 应用程序。
是否有任何向后移植库或其他东西(可能具有更多的 android l 设计功能)?
我已经看过 google.com/design -> ressources 和 developer.android.com
问问题
683 次
1 回答
2
这只是你想要的一个样本(我认为)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.sockettest.MainActivity"
tools:ignore="MergeRootFrame" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="250dp"
android:layout_height="100dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#ccc"
android:orientation="vertical" >
</LinearLayout>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@+id/linearLayout1"
android:src="@drawable/ic_launcher"
android:layout_marginLeft="-20dp" />
</RelativeLayout>
您适合imageView
布局的左侧到右侧,然后设置减边距( -20 )。
但要小心,imageView
一定要低于你的布局,(你可以交换 LayoutimageView
来查看结果)
于 2014-06-28T10:48:12.310 回答