老师,您好!为什么我最后的结果是这样的?
AlanCooper
2014-10-04
8 回答
老师,我是在校学生,马上要毕业了。我最近在自学Android,我想向您请教一下,现在公司实际项目开发中用Java开发Android程序还是占绝大多数吗?因为我有听同学说大多数是用Python和C/C++开发的,Java的只占少部分。另外,我想问您一下Android程序开发人员现在的工资一般的话平均能达到多少?希望您能给解答一下,万分感谢了!我有想过去报一个培训班的,但是后来还是选择自己学,因为感觉一些培训机构宣扬的就业薪资待遇什么的都不太靠谱,而且编程这东西最后主要还是得靠自己去慢慢钻研。您是过来人,希望您能给一些Android学习上的建议和指导!不忙的话,希望您能给简单的介绍一下,再次感谢您了!
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context=".MainActivity" > <include layout="@layout/common_title" /> </LinearLayout>
common_title.xml
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/dark_red" android:paddingTop="10dp" android:paddingBottom="10dp"> <TextView android:id="@+id/texReturn" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_centerVertical="true" android:layout_marginLeft="10dp" android:textColor="#ffffff" android:textSize="16sp" android:text="返回"/> <TextView android:id="@+id/textTitle" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:textColor="#ffffff" android:textSize="17sp" android:text="布局优化"/> <TextView android:id="@+id/texFunction" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="10dp" android:textColor="#ffffff" android:textSize="16sp" android:text="功能"/> </RelativeLayout>
举报
0/150
提交
取消