我对Android非常陌生,我打算将其发布到Android Developers - Google Groups,但他们似乎说新手需要发布到Stack Overflow。所以我在这里。
我昨天下载了最新版本的 Android Studio 1.4.1 ,我按照Building Your First App上的说明操作。我做了一切Starting Another Activity。看起来这些说明有点旧,即对于以前版本的SDK,因为它们不会引用CoordinatorLayout
和AppBarLayout
,但如果您按照这些步骤显示在代码中。显然,我确实对代码进行了微小的更改,以使这个应用程序正常工作,但并非完全如此。
我的问题:如果您查看Starting Another Activity底部的图片,您会看到他们都标题为我的第一个应用。在我对代码的修改中,我无法在图像/屏幕上获得此标题。 (我应该提一下,我想使用更新版本的AppBarLayout
和CoordinatorLayout
)
让我们关注第一个屏幕,activity_my.xml
是
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MyActivity">
<include layout="@layout/content_my" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
正如Building a Simple User Interface底部所提到的,content_my.xml
看起来像:
<?xml version="1.0" encoding="utf-8"?>
<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="horizontal" >
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"/>
</LinearLayout>
无论如何,我可以将AppBarLayout
添加到activity_my.xml
。我尝试过类似的东西:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MyActivity">
<android.support.design.widget.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<include layout="@layout/content_my" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
android:src="@android:drawable/ic_dialog_email" />
</android.support.design.widget.CoordinatorLayout>
问题在于content_my.xml
中的内容落后Toolbar
AppBarLayout
而不是$previous_hour = null;
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
$marker = 'first_thirty';
$hour = substr($row["time"],0,2);
$minutes = substr($row["time"],3,2);
if ( $previous_hour && ( $previous_hour != $hour ) ) {
$marker = 'first_thirty'
//add searator
} else {
if ( $minutes >= 30 && $marker == 'first_thirty' ) {
$marker = 'last_thirty'
//add separator
}
}
//do normal
$previous_hour = $hour;
}
。任何想法如何解决这个问题?
答案 0 :(得分:79)
CoordinatorLayout
中的布局需要定义layout_behavior
。将您的内容更改为:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
>
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"
android:onClick="sendMessage"/>
</LinearLayout>