這是我的解決方案:
我的XML文件裏面第一個活動。點擊按鈕後,您將被重定向到第二個有按鈕的活動。我給完整的源代碼:
活動1:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button nextBtn = (Button)findViewById(R.id.button1);
nextBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
startActivity(new Intent("com.ranjan.dibya.shadow.Next"));
}
});
}
}
活動2:
public class Next extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.next);
}
}
XML的活動1:
<RelativeLayout 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:background="#f09473"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="16dp"
android:text="Button" />
</RelativeLayout>
XML爲活動2:
<RelativeLayout 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"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="This is clickable" />
</RelativeLayout>
我的清單
<activity
android:name=".Next"
android:label="@string/app_name"
android:theme="@style/Theme.MyTranslucent" >
風格:
<style name="Theme.MyTranslucent" parent="android:style/Theme.Translucent">
<item name="android:backgroundDimEnabled">true</item>
<item name="android:backgroundDimAmount">0.5</item>
<item name="android:windowAnimationStyle">@android:style/Animation.Dialog</item>
<item name="android:background">@android:color/transparent</item>
</style>
這對我的作品。我希望同樣適用於你。
編輯:您使用的鏈接會導致在中心的按鈕透明的活動想通了這一點由我自己:)
我甚至用getWindow()setBackgroundDrawable(新ColorDrawable(0));但它不工作 –