Blame view

app/src/main/res/layout/content_main.xml 1.09 KB
e12cc46b8   junsang   basic android app
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <?xml version="1.0" encoding="utf-8"?>
  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
      android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
      android:paddingRight="@dimen/activity_horizontal_margin"
      android:paddingTop="@dimen/activity_vertical_margin"
      android:paddingBottom="@dimen/activity_vertical_margin"
      app:layout_behavior="@string/appbar_scrolling_view_behavior"
      tools:showIn="@layout/activity_main" tools:context=".MainActivity">
  
      <ImageView
          android:layout_height="160dp"
          android:layout_width="160dp"
          android:background="@drawable/image1"/>
  
      <TextView
          android:layout_alignParentRight="true"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:text="hellowl"
          android:id="@+id/ChatMessage"
          android:background="@drawable/chat"
          android:textSize="20sp" />
  </LinearLayout>