阅读背景:

Android学习笔记上下文菜单

来源:互联网 

布局文件main_activity.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
    xmlns:app="https://schemas.android.com/apk/res-auto"
    xmlns:tools="https://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">
    <!--标题栏-->
    <ImageView
        android:id="@+id/img_title"
        android:layout_width="match_parent"
        android:layout_height="@dimen/title_height"
        android:scaleType="fitXY"
        android:src="@drawable/wei_top" />
    <!--头像-->
    <ImageView
        android:id="@+id/img_head"
        android:layout_width="@dimen/head"
        android:layout_height="@dimen/head"
        android:layout_below="@+id/img_title"
        android:src="@mipmap/tx3"/>
    <!--用户名-->
    <TextView
        android:id="@+id/username"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/img_head"
        android:text="CSDN梦梦"
        android:textSize="@dimen/userNameSize"
        android:layout_marginLeft="@dimen/margin_headLeft"
        android:layout_below="@+id/img_title"
        android:textColor="@color/colorUsername"/>
    <!--内容-->
    <TextView
        android:id="@+id/content"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/content"
        android:layout_below="@+id/username"
        android:layout_toRightOf="@+id/img_head"
        android:textColor="@color/colorContent"
        android:textSize="@dimen/content_textSize"
        android:layout_marginLeft="@dimen/margin_headLeft"/>

    <TextView
        android:id="@+id/time_tip"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="12sp"
        android:text="12小时前"
        android:layout_toRightOf="@+id/img_head"
        android:layout_marginLeft="@dimen/margin_headLeft"
        android:layout_marginTop="10dp"
        android:textColor="@android:color/darker_gray"
        android:layout_below="@id/content"/>
</RelativeLayout>
<?xml version="1.0" enco



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: