Android アプリに表示しようとしている Google カレンダーがありますが、表示すると、HTC Incredible 2 で途切れてしまいます。Nexus 7 では問題なく表示されます。しかし、まだ運がありません。どんな助けでも素晴らしいでしょう。ありがとうございました!
public class Events extends SherlockActivity
{
boolean isLoaded = false;
ActionBar actionBar;
WebView eventView;
ProgressDialog progressDialog;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.events);
actionBar = getSupportActionBar();
actionBar.setDisplayShowTitleEnabled(false);
actionBar.setDisplayShowHomeEnabled(false);
eventView = (WebView) findViewById(R.id.eventsView);
eventView.getSettings().setJavaScriptEnabled(true);
final Activity activity = this;
/* Cut out loading screen, etc */
eventView.loadUrl("https://www.google.com/calendar/embed?showTitle=0&mode=MONTH&height=600&wkst=1&bgcolor=%23ffffff&src=fresnochaffeezoo%40gmail.com&color=%23182C57&ctz=America%2FLos_Angeles");
}
<RelativeLayout 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">
<WebView
android:id="@+id/eventsView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</RelativeLayout>