Android自定义控件按钮

来源:互联网 发布:linux 进程状态日志 编辑:程序博客网 时间:2024/05/29 05:52
<LinearLayout        android:id="@+id/fenzu_btn_1"        android:layout_width="match_parent"        android:layout_height="wrap_content"        android:layout_marginLeft="10dp"        android:layout_marginRight="10dp"        android:layout_marginTop="10dp"        android:layout_weight="1"        android:background="#262831"        android:gravity="center_vertical"        android:orientation="horizontal" >        <TextView            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_marginLeft="20dp"            android:layout_weight="1"            android:text="我的好友"            android:textColor="#ffffff" />        <LinearLayout            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_weight="1"            android:gravity="right"            android:orientation="horizontal" >            <ImageView                android:layout_width="wrap_content"                android:layout_height="wrap_content"                android:layout_marginRight="15dp"                android:background="@drawable/jiantou" />        </LinearLayout>    </LinearLayout>

0 0
原创粉丝点击