제목 표시 줄에 버튼을 추가하려하지만 성공하지 못했습니다. 나는 이것에 관한 많은 기사를 읽었지 만, 그들은 모두 나의 상황에 맞지 않는 방식을 설명합니다. ScrollView를 사용하여 화면을 스크롤 가능하게 만듭니다. 하지만 기사에서는 선형 레이아웃을 사용하도록 제안합니다. 어떻게 스크롤 할 수 있고 제목 표시 줄에 단추가 있습니까?제목 표시 줄에 안드로이드 추가 버튼
여기 내 XML
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#C0C0C0"
android:id="@+id/sw_layout">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:id="@+id/ln_layout">
<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft=<"@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >
.........................
.........................
.........................
</TableLayout>
</LinearLayout>
</ScrollView>
입니다 그리고 내 활동에, 나는이 코드를 가지고 ....
LinearLayout ln = (LinearLayout) getWindow().findViewById(R.id.ln_layout);
Button btn = new Button(this);
btn.setText("Test");
ln.addView(btn);
하지만이 나던 나던 디스플레이 아무것도 그것은 나에게 오류를 제공 나던. 제게 아이디어를주십시오. 제목 표시 줄에 단추를 추가하려면 어떻게합니까?
내부
문제
당신은 그냥 배경색을 변경하는 테마를 사용하고 제목 – qwr을 변경하는 테마를 사용하고 있습니다. thats 그것 –
나는 당신을 얻을 수 없다? 당신은 전혀 변경을 할 수 없습니다. 또는 Scrollview를 사용하는 경우 작동하지 않습니다. 그냥 제목 표시 줄에 scrollview 필요가 없습니다 layour을 사용하십시오. – qwr