我希望列表视图中有两个按钮。如果我在列表视图下方滚动,我希望按钮保持在顶部。我在stackoverflow上搜索了很多解决方案但是我无法找到适合我案例的解决方案。
我的布局xml(mainlayout.xml):
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/latest_news_button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/tracked_news_button" />
</LinearLayout>
<ListView
android:id="@+id/mylist"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
生成的图形布局正是我想要的:
以下是我使用此布局的代码,以防我可能无法将Java代码绑定到布局;
public class MainActivity extends ListActivity{
Button latestButton;
Button trackedButton;
ListView lv = null;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.mainlayout);
latestButton = (Button)findViewById(R.id.button1);
latestButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, "Latest Button!", Toast.LENGTH_LONG).show();
}
});
trackedButton = (Button)findViewById(R.id.button2);
trackedButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, "Tracked Button!", Toast.LENGTH_LONG).show();
}
});
this.lv = getListView();
String[] values = new String[]{"asdfa","qwerqwer","banbn"};
lv.setAdapter(new ArrayAdapter<String>(BilTrackerMainActivity.this, android.R.layout.simple_expandable_list_item_1, values));
}
然而,当从我的其他活动调用此活动时,我的应用程序很遗憾地关闭了。 LogCat说:
您的内容必须包含一个ListView,其id属性为'android.R.id.list'
但我尝试添加lv = (ListView)findViewById(R.id.mylist);
而不是this.lv = getListView();
。我无法解决这个问题。
我知道ListView#addHeaderView
但我想用这种布局来解决我的特殊问题。
答案 0 :(得分:4)
只需将您的listview ID更改为android:id="@android:id/list"
答案 1 :(得分:1)
使用RelativeLayout。使用layout_toRightOf将第二个按钮放在第一个按钮的右侧,然后使用layout_below将listview放在按钮1下面。这样的事情(我没有测试过,为任何错别字道歉)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/latest_news_button" />
<Button
android:id="@+id/button2"
android:layout_toRightOf="@id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/tracked_news_button" />
<ListView
android:id="@+id/mylist"
android:layout_below="@id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
答案 2 :(得分:0)
以下是您要找的xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF394952">
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
style="@android:style/ButtonBar">
<Button
android:id="@+id/btn_AddMore"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/newItem"
android:textColor="#FF394952"/>
</LinearLayout>
<ListView
android:id="@+id/game_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_weight="1.0" />
</LinearLayout>
当您为此设计Activity时,请不要直接使用List活动并在ListView上设置适配器。
ListView lv = (ListView) findViewById(R.id.game_list);
ArrayAdapter<String> listItem = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, android.R.id.text1, ALBUM_NAME);
lv.setAdapter(listItem);
lv.setTextFilterEnabled(true);
答案 3 :(得分:0)
使用下面的xml文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:id="@+id/mLlayout1" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/latest_news_button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/tracked_news_button" />
</LinearLayout>
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/mLlayout1" >
</ListView>
</RelativeLayout>
答案 4 :(得分:0)
使用[您的ListView]和[LinearLayout with your buttons]创建FrameLayout。
在onCreate()
中做过类似的事情LinearLayout myButtons = ...;
myButtons.bringToFront();
因此,您的ContentView将有一个带有两个子级的FrameLayout,其中一个位于前台。
这就是全部。希望它有所帮助))