这是这里所问问题的延伸:
如何让底板从顶部打开?
Android“顶单”相当于“底单”?
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="fill_parent"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container_main"
android:orientation="vertical">
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Main Content -->
<include layout="@layout/content_main"
/>
<!-- Bottom Sheet Content -->
<include layout="@layout/content_bottom_sheet"
/>
</android.support.design.widget.CoordinatorLayout>
</LinearLayout>
content_main.xml
<?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"
android:weightSum="2"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/activity_main">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.6">
</LinearLayout>
</LinearLayout>
content_bottom_sheet.xml
<?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:class="http://schemas.android.com/tools"
android:id="@+id/bottomSheetLayout"
android:layout_width="match_parent"
android:layout_height="300dp"
app:behavior_peekHeight="50dp"
android:orientation="vertical"
app:layout_behavior="@string/bottom_sheet_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.9"
android:weightSum="4">
<ImageButton
android:id="@+id/category0"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#BB45BBEC"
android:onClick="jumpto0"
/>
<ImageButton
android:id="@+id/category1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:textAllCaps="false"
android:layout_weight="1"
android:background="#AAA"
android:onClick="jumpto1"
/>
<ImageButton
android:id="@+id/category2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#FFEF53"
android:onClick="jumpto2"
/>
<ImageButton
android:id="@+id/category3"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#FFF50E0E"
android:onClick="jumptp3"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="0.2">
<ImageButton
android:id="@+id/bottom1"
android:layout_width="98dp"
android:layout_height="62dp"
android:layout_gravity="center"
android:background="#FFF50E0E"
/>
<ImageButton
android:id="@+id/bottom2"
android:layout_width="98dp"
android:layout_height="62dp"
android:layout_gravity="center"
android:background="#FFF5"
/>
</LinearLayout>
</LinearLayout>
</LinearLayout>
在这种情况下,可以使用RightSheetBehavior。但首先,你应该处理方向变化,并根据方向替换一个行为。
问题内容: 情况1: 我想在默认WordPress主题的标题中的照片上方放置徽标徽标 我的解决方案:在照片前添加徽标,然后在其上 进行 设置, 而无需 设置任何属性: HTML: CSS: 案例2: 另一个示例是水平多级菜单,其宽度为100%,并带有布局,但不支持 它适用于IE6-7,Firefox1.5,不适用于Firefox 0.8等。 您认为这是一个很好的解决方案,还是非标准的破解程序,可以
是否可以更改Apache使用的的位置?当我做时,结果是: 路径= 已加载配置文件 但是的结果是 配置文件(php.ini)路径: /etc 我可以将从复制到,但是可以更改php.ini文件夹吗? 我使用自制软件安装PHP,我使用的是OS X Snow Leopard。
我有自定义。我在我的中使用的。我试图按位置更改项目背景颜色(也更改Textview的文本颜色)这是我源 当我在项目点击中运行我的应用程序时,我可以更改背景颜色,但当我选中另一个项目时,第一个项目的背景是相同的。简单地说,我只想在每次单击时更改一个项目的背景。 我怎样才能解决我的问题?
我无法更改java swing中“setbounds”中按钮或面板的位置。它只是粘在上面。我应该在这里换什么?我应该在按钮上添加“Gridlayout”吗?更改面板位置对按钮没有任何作用。 公共课主课{
这里有一个关于使用方法关闭一组轴给定侧的刻度的问题。我想更改和属性在默认情况下关闭在我的,但我不知道如何做到这一点,作为文件的刻度部分处理在和方面的东西。我错过了什么?
由于某些原因,ImagePanel的大小与JFrame的大小不相同(如这里所示:http://prntscr.com/l8d98i)。当我将ImagePanel的大小设置为JFrame的大小时,我的组件都会调整大小。这是为什么?如图所示:http://prntscr.com/l8d9ka